diff --git a/.claude/commands/pr.md b/.claude/commands/pr.md index cbc421857..1fd532783 100644 --- a/.claude/commands/pr.md +++ b/.claude/commands/pr.md @@ -29,6 +29,6 @@ Follow conventional commit standards and keep PR descriptions concise but inform All pull requests must be submitted from a personal fork of the repository. The command should: - Check if a fork exists using `gh repo view --json parent` to determine if current repo is a fork -- If not a fork, create one with `gh repo fork --clone=false` +- If not a fork, create one with `gh repo fork --clone=false` - Set up remotes properly: `origin` should point to the user's fork, `upstream` to the original repository - Push changes to the fork and create the PR targeting the upstream repository diff --git a/server/cmd/gram/start.go b/server/cmd/gram/start.go index 68851048c..836bce123 100644 --- a/server/cmd/gram/start.go +++ b/server/cmd/gram/start.go @@ -485,6 +485,7 @@ func newStartCommand() *cli.Command { mux.Use(middleware.SessionMiddleware) mux.Use(middleware.AdminOverrideMiddleware) + about.SetGitSHA(GitSHA) about.Attach(mux, about.NewService(logger, tracerProvider)) auth.Attach(mux, auth.NewService(logger, db, sessionManager, auth.AuthConfigurations{ SpeakeasyServerAddress: c.String("speakeasy-server-address"), diff --git a/server/design/about/design.go b/server/design/about/design.go index 61a3022d5..b5bbc3db8 100644 --- a/server/design/about/design.go +++ b/server/design/about/design.go @@ -30,4 +30,21 @@ var _ = Service("about", func() { }) }) }) + + Method("version", func() { + Description("Get version information for the Gram components.") + + Result(func() { + Attribute("server_version", String, "The version of the Gram server") + Attribute("dashboard_version", String, "The version of the Gram dashboard") + Attribute("git_sha", String, "The Git SHA of the current build") + + Required("server_version", "dashboard_version", "git_sha") + }) + + HTTP(func() { + GET("/version") + Response(StatusOK) + }) + }) }) diff --git a/server/gen/about/client.go b/server/gen/about/client.go index ac118efbf..6fc13d526 100644 --- a/server/gen/about/client.go +++ b/server/gen/about/client.go @@ -17,12 +17,14 @@ import ( // Client is the "about" service client. type Client struct { OpenapiEndpoint goa.Endpoint + VersionEndpoint goa.Endpoint } // NewClient initializes a "about" service client given the endpoints. -func NewClient(openapi goa.Endpoint) *Client { +func NewClient(openapi, version goa.Endpoint) *Client { return &Client{ OpenapiEndpoint: openapi, + VersionEndpoint: version, } } @@ -48,3 +50,25 @@ func (c *Client) Openapi(ctx context.Context) (res *OpenapiResult, resp io.ReadC o := ires.(*OpenapiResponseData) return o.Result, o.Body, nil } + +// Version calls the "version" endpoint of the "about" service. +// Version may return the following errors: +// - "unauthorized" (type *goa.ServiceError): unauthorized access +// - "forbidden" (type *goa.ServiceError): permission denied +// - "bad_request" (type *goa.ServiceError): request is invalid +// - "not_found" (type *goa.ServiceError): resource not found +// - "conflict" (type *goa.ServiceError): resource already exists +// - "unsupported_media" (type *goa.ServiceError): unsupported media type +// - "invalid" (type *goa.ServiceError): request contains one or more invalidation fields +// - "invariant_violation" (type *goa.ServiceError): an unexpected error occurred +// - "unexpected" (type *goa.ServiceError): an unexpected error occurred +// - "gateway_error" (type *goa.ServiceError): an unexpected error occurred +// - error: internal error +func (c *Client) Version(ctx context.Context) (res *VersionResult, err error) { + var ires any + ires, err = c.VersionEndpoint(ctx, nil) + if err != nil { + return + } + return ires.(*VersionResult), nil +} diff --git a/server/gen/about/endpoints.go b/server/gen/about/endpoints.go index 316593be3..bd29c79b1 100644 --- a/server/gen/about/endpoints.go +++ b/server/gen/about/endpoints.go @@ -17,6 +17,7 @@ import ( // Endpoints wraps the "about" service endpoints. type Endpoints struct { Openapi goa.Endpoint + Version goa.Endpoint } // OpenapiResponseData holds both the result and the HTTP response body reader @@ -32,12 +33,14 @@ type OpenapiResponseData struct { func NewEndpoints(s Service) *Endpoints { return &Endpoints{ Openapi: NewOpenapiEndpoint(s), + Version: NewVersionEndpoint(s), } } // Use applies the given middleware to all the "about" service endpoints. func (e *Endpoints) Use(m func(goa.Endpoint) goa.Endpoint) { e.Openapi = m(e.Openapi) + e.Version = m(e.Version) } // NewOpenapiEndpoint returns an endpoint function that calls the method @@ -51,3 +54,11 @@ func NewOpenapiEndpoint(s Service) goa.Endpoint { return &OpenapiResponseData{Result: res, Body: body}, nil } } + +// NewVersionEndpoint returns an endpoint function that calls the method +// "version" of service "about". +func NewVersionEndpoint(s Service) goa.Endpoint { + return func(ctx context.Context, req any) (any, error) { + return s.Version(ctx) + } +} diff --git a/server/gen/about/service.go b/server/gen/about/service.go index ff7648a63..ed1794909 100644 --- a/server/gen/about/service.go +++ b/server/gen/about/service.go @@ -22,6 +22,8 @@ type Service interface { // Consider [goa.design/goa/v3/pkg.SkipResponseWriter] to adapt existing // implementations. Openapi(context.Context) (res *OpenapiResult, body io.ReadCloser, err error) + // Get version information for the Gram components. + Version(context.Context) (res *VersionResult, err error) } // APIName is the name of the API as defined in the design. @@ -38,7 +40,7 @@ const ServiceName = "about" // MethodNames lists the service method names as defined in the design. These // are the same values that are set in the endpoint request contexts under the // MethodKey key. -var MethodNames = [1]string{"openapi"} +var MethodNames = [2]string{"openapi", "version"} // OpenapiResult is the result type of the about service openapi method. type OpenapiResult struct { @@ -48,6 +50,16 @@ type OpenapiResult struct { ContentLength int64 } +// VersionResult is the result type of the about service version method. +type VersionResult struct { + // The version of the Gram server + ServerVersion string + // The version of the Gram dashboard + DashboardVersion string + // The Git SHA of the current build + GitSha string +} + // MakeUnauthorized builds a goa.ServiceError from an error. func MakeUnauthorized(err error) *goa.ServiceError { return goa.NewServiceError(err, "unauthorized", false, false, false) diff --git a/server/gen/http/about/client/client.go b/server/gen/http/about/client/client.go index d7c1b015b..c4292971a 100644 --- a/server/gen/http/about/client/client.go +++ b/server/gen/http/about/client/client.go @@ -22,6 +22,10 @@ type Client struct { // endpoint. OpenapiDoer goahttp.Doer + // Version Doer is the HTTP client used to make requests to the version + // endpoint. + VersionDoer goahttp.Doer + // RestoreResponseBody controls whether the response bodies are reset after // decoding so they can be read again. RestoreResponseBody bool @@ -43,6 +47,7 @@ func NewClient( ) *Client { return &Client{ OpenapiDoer: doer, + VersionDoer: doer, RestoreResponseBody: restoreBody, scheme: scheme, host: host, @@ -74,3 +79,22 @@ func (c *Client) Openapi() goa.Endpoint { return &about.OpenapiResponseData{Result: res.(*about.OpenapiResult), Body: resp.Body}, nil } } + +// Version returns an endpoint that makes HTTP requests to the about service +// version server. +func (c *Client) Version() goa.Endpoint { + var ( + decodeResponse = DecodeVersionResponse(c.decoder, c.RestoreResponseBody) + ) + return func(ctx context.Context, v any) (any, error) { + req, err := c.BuildVersionRequest(ctx, v) + if err != nil { + return nil, err + } + resp, err := c.VersionDoer.Do(req) + if err != nil { + return nil, goahttp.ErrRequestError("about", "version", err) + } + return decodeResponse(resp) + } +} diff --git a/server/gen/http/about/client/encode_decode.go b/server/gen/http/about/client/encode_decode.go index 80fee067e..04e8e820a 100644 --- a/server/gen/http/about/client/encode_decode.go +++ b/server/gen/http/about/client/encode_decode.go @@ -242,3 +242,217 @@ func DecodeOpenapiResponse(decoder func(*http.Response) goahttp.Decoder, restore } } } + +// BuildVersionRequest instantiates a HTTP request object with method and path +// set to call the "about" service "version" endpoint +func (c *Client) BuildVersionRequest(ctx context.Context, v any) (*http.Request, error) { + u := &url.URL{Scheme: c.scheme, Host: c.host, Path: VersionAboutPath()} + req, err := http.NewRequest("GET", u.String(), nil) + if err != nil { + return nil, goahttp.ErrInvalidURL("about", "version", u.String(), err) + } + if ctx != nil { + req = req.WithContext(ctx) + } + + return req, nil +} + +// DecodeVersionResponse returns a decoder for responses returned by the about +// version endpoint. restoreBody controls whether the response body should be +// restored after having been read. +// DecodeVersionResponse may return the following errors: +// - "unauthorized" (type *goa.ServiceError): http.StatusUnauthorized +// - "forbidden" (type *goa.ServiceError): http.StatusForbidden +// - "bad_request" (type *goa.ServiceError): http.StatusBadRequest +// - "not_found" (type *goa.ServiceError): http.StatusNotFound +// - "conflict" (type *goa.ServiceError): http.StatusConflict +// - "unsupported_media" (type *goa.ServiceError): http.StatusUnsupportedMediaType +// - "invalid" (type *goa.ServiceError): http.StatusUnprocessableEntity +// - "invariant_violation" (type *goa.ServiceError): http.StatusInternalServerError +// - "unexpected" (type *goa.ServiceError): http.StatusInternalServerError +// - "gateway_error" (type *goa.ServiceError): http.StatusBadGateway +// - error: internal error +func DecodeVersionResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (any, error) { + return func(resp *http.Response) (any, error) { + if restoreBody { + b, err := io.ReadAll(resp.Body) + if err != nil { + return nil, err + } + resp.Body = io.NopCloser(bytes.NewBuffer(b)) + defer func() { + resp.Body = io.NopCloser(bytes.NewBuffer(b)) + }() + } else { + defer resp.Body.Close() + } + switch resp.StatusCode { + case http.StatusOK: + var ( + body VersionResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + res := NewVersionResultOK(&body) + return res, nil + case http.StatusUnauthorized: + var ( + body VersionUnauthorizedResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionUnauthorizedResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionUnauthorized(&body) + case http.StatusForbidden: + var ( + body VersionForbiddenResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionForbiddenResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionForbidden(&body) + case http.StatusBadRequest: + var ( + body VersionBadRequestResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionBadRequestResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionBadRequest(&body) + case http.StatusNotFound: + var ( + body VersionNotFoundResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionNotFoundResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionNotFound(&body) + case http.StatusConflict: + var ( + body VersionConflictResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionConflictResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionConflict(&body) + case http.StatusUnsupportedMediaType: + var ( + body VersionUnsupportedMediaResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionUnsupportedMediaResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionUnsupportedMedia(&body) + case http.StatusUnprocessableEntity: + var ( + body VersionInvalidResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionInvalidResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionInvalid(&body) + case http.StatusInternalServerError: + en := resp.Header.Get("goa-error") + switch en { + case "invariant_violation": + var ( + body VersionInvariantViolationResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionInvariantViolationResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionInvariantViolation(&body) + case "unexpected": + var ( + body VersionUnexpectedResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionUnexpectedResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionUnexpected(&body) + default: + body, _ := io.ReadAll(resp.Body) + return nil, goahttp.ErrInvalidResponse("about", "version", resp.StatusCode, string(body)) + } + case http.StatusBadGateway: + var ( + body VersionGatewayErrorResponseBody + err error + ) + err = decoder(resp).Decode(&body) + if err != nil { + return nil, goahttp.ErrDecodingError("about", "version", err) + } + err = ValidateVersionGatewayErrorResponseBody(&body) + if err != nil { + return nil, goahttp.ErrValidationError("about", "version", err) + } + return nil, NewVersionGatewayError(&body) + default: + body, _ := io.ReadAll(resp.Body) + return nil, goahttp.ErrInvalidResponse("about", "version", resp.StatusCode, string(body)) + } + } +} diff --git a/server/gen/http/about/client/paths.go b/server/gen/http/about/client/paths.go index 89a0c9863..d742cfbfd 100644 --- a/server/gen/http/about/client/paths.go +++ b/server/gen/http/about/client/paths.go @@ -11,3 +11,8 @@ package client func OpenapiAboutPath() string { return "/openapi.yaml" } + +// VersionAboutPath returns the URL path to the about service version HTTP endpoint. +func VersionAboutPath() string { + return "/version" +} diff --git a/server/gen/http/about/client/types.go b/server/gen/http/about/client/types.go index e88bea298..821f1e088 100644 --- a/server/gen/http/about/client/types.go +++ b/server/gen/http/about/client/types.go @@ -12,6 +12,17 @@ import ( goa "goa.design/goa/v3/pkg" ) +// VersionResponseBody is the type of the "about" service "version" endpoint +// HTTP response body. +type VersionResponseBody struct { + // The version of the Gram server + ServerVersion *string `form:"server_version,omitempty" json:"server_version,omitempty" xml:"server_version,omitempty"` + // The version of the Gram dashboard + DashboardVersion *string `form:"dashboard_version,omitempty" json:"dashboard_version,omitempty" xml:"dashboard_version,omitempty"` + // The Git SHA of the current build + GitSha *string `form:"git_sha,omitempty" json:"git_sha,omitempty" xml:"git_sha,omitempty"` +} + // OpenapiUnauthorizedResponseBody is the type of the "about" service "openapi" // endpoint HTTP response body for the "unauthorized" error. type OpenapiUnauthorizedResponseBody struct { @@ -192,6 +203,186 @@ type OpenapiGatewayErrorResponseBody struct { Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` } +// VersionUnauthorizedResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "unauthorized" error. +type VersionUnauthorizedResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// VersionForbiddenResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "forbidden" error. +type VersionForbiddenResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// VersionBadRequestResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "bad_request" error. +type VersionBadRequestResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// VersionNotFoundResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "not_found" error. +type VersionNotFoundResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// VersionConflictResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "conflict" error. +type VersionConflictResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// VersionUnsupportedMediaResponseBody is the type of the "about" service +// "version" endpoint HTTP response body for the "unsupported_media" error. +type VersionUnsupportedMediaResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// VersionInvalidResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "invalid" error. +type VersionInvalidResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// VersionInvariantViolationResponseBody is the type of the "about" service +// "version" endpoint HTTP response body for the "invariant_violation" error. +type VersionInvariantViolationResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// VersionUnexpectedResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "unexpected" error. +type VersionUnexpectedResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + +// VersionGatewayErrorResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "gateway_error" error. +type VersionGatewayErrorResponseBody struct { + // Name is the name of this class of errors. + Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"` + // ID is a unique identifier for this particular occurrence of the problem. + ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"` + // Is the error temporary? + Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"` + // Is the error a timeout? + Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"` + // Is the error a server-side fault? + Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"` +} + // NewOpenapiResultOK builds a "about" service "openapi" endpoint result from a // HTTP "OK" response. func NewOpenapiResultOK(contentLength int64, contentType string) *about.OpenapiResult { @@ -348,6 +539,179 @@ func NewOpenapiGatewayError(body *OpenapiGatewayErrorResponseBody) *goa.ServiceE return v } +// NewVersionResultOK builds a "about" service "version" endpoint result from a +// HTTP "OK" response. +func NewVersionResultOK(body *VersionResponseBody) *about.VersionResult { + v := &about.VersionResult{ + ServerVersion: *body.ServerVersion, + DashboardVersion: *body.DashboardVersion, + GitSha: *body.GitSha, + } + + return v +} + +// NewVersionUnauthorized builds a about service version endpoint unauthorized +// error. +func NewVersionUnauthorized(body *VersionUnauthorizedResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewVersionForbidden builds a about service version endpoint forbidden error. +func NewVersionForbidden(body *VersionForbiddenResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewVersionBadRequest builds a about service version endpoint bad_request +// error. +func NewVersionBadRequest(body *VersionBadRequestResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewVersionNotFound builds a about service version endpoint not_found error. +func NewVersionNotFound(body *VersionNotFoundResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewVersionConflict builds a about service version endpoint conflict error. +func NewVersionConflict(body *VersionConflictResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewVersionUnsupportedMedia builds a about service version endpoint +// unsupported_media error. +func NewVersionUnsupportedMedia(body *VersionUnsupportedMediaResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewVersionInvalid builds a about service version endpoint invalid error. +func NewVersionInvalid(body *VersionInvalidResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewVersionInvariantViolation builds a about service version endpoint +// invariant_violation error. +func NewVersionInvariantViolation(body *VersionInvariantViolationResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewVersionUnexpected builds a about service version endpoint unexpected +// error. +func NewVersionUnexpected(body *VersionUnexpectedResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// NewVersionGatewayError builds a about service version endpoint gateway_error +// error. +func NewVersionGatewayError(body *VersionGatewayErrorResponseBody) *goa.ServiceError { + v := &goa.ServiceError{ + Name: *body.Name, + ID: *body.ID, + Message: *body.Message, + Temporary: *body.Temporary, + Timeout: *body.Timeout, + Fault: *body.Fault, + } + + return v +} + +// ValidateVersionResponseBody runs the validations defined on +// VersionResponseBody +func ValidateVersionResponseBody(body *VersionResponseBody) (err error) { + if body.ServerVersion == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("server_version", "body")) + } + if body.DashboardVersion == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("dashboard_version", "body")) + } + if body.GitSha == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("git_sha", "body")) + } + return +} + // ValidateOpenapiUnauthorizedResponseBody runs the validations defined on // openapi_unauthorized_response_body func ValidateOpenapiUnauthorizedResponseBody(body *OpenapiUnauthorizedResponseBody) (err error) { @@ -587,3 +951,243 @@ func ValidateOpenapiGatewayErrorResponseBody(body *OpenapiGatewayErrorResponseBo } return } + +// ValidateVersionUnauthorizedResponseBody runs the validations defined on +// version_unauthorized_response_body +func ValidateVersionUnauthorizedResponseBody(body *VersionUnauthorizedResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateVersionForbiddenResponseBody runs the validations defined on +// version_forbidden_response_body +func ValidateVersionForbiddenResponseBody(body *VersionForbiddenResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateVersionBadRequestResponseBody runs the validations defined on +// version_bad_request_response_body +func ValidateVersionBadRequestResponseBody(body *VersionBadRequestResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateVersionNotFoundResponseBody runs the validations defined on +// version_not_found_response_body +func ValidateVersionNotFoundResponseBody(body *VersionNotFoundResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateVersionConflictResponseBody runs the validations defined on +// version_conflict_response_body +func ValidateVersionConflictResponseBody(body *VersionConflictResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateVersionUnsupportedMediaResponseBody runs the validations defined on +// version_unsupported_media_response_body +func ValidateVersionUnsupportedMediaResponseBody(body *VersionUnsupportedMediaResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateVersionInvalidResponseBody runs the validations defined on +// version_invalid_response_body +func ValidateVersionInvalidResponseBody(body *VersionInvalidResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateVersionInvariantViolationResponseBody runs the validations defined +// on version_invariant_violation_response_body +func ValidateVersionInvariantViolationResponseBody(body *VersionInvariantViolationResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateVersionUnexpectedResponseBody runs the validations defined on +// version_unexpected_response_body +func ValidateVersionUnexpectedResponseBody(body *VersionUnexpectedResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} + +// ValidateVersionGatewayErrorResponseBody runs the validations defined on +// version_gateway_error_response_body +func ValidateVersionGatewayErrorResponseBody(body *VersionGatewayErrorResponseBody) (err error) { + if body.Name == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("name", "body")) + } + if body.ID == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("id", "body")) + } + if body.Message == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("message", "body")) + } + if body.Temporary == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("temporary", "body")) + } + if body.Timeout == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("timeout", "body")) + } + if body.Fault == nil { + err = goa.MergeErrors(err, goa.MissingFieldError("fault", "body")) + } + return +} diff --git a/server/gen/http/about/server/encode_decode.go b/server/gen/http/about/server/encode_decode.go index ed5b61c1b..41c255d56 100644 --- a/server/gen/http/about/server/encode_decode.go +++ b/server/gen/http/about/server/encode_decode.go @@ -189,3 +189,171 @@ func EncodeOpenapiError(encoder func(context.Context, http.ResponseWriter) goaht } } } + +// EncodeVersionResponse returns an encoder for responses returned by the about +// version endpoint. +func EncodeVersionResponse(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder) func(context.Context, http.ResponseWriter, any) error { + return func(ctx context.Context, w http.ResponseWriter, v any) error { + res, _ := v.(*about.VersionResult) + enc := encoder(ctx, w) + body := NewVersionResponseBody(res) + w.WriteHeader(http.StatusOK) + return enc.Encode(body) + } +} + +// EncodeVersionError returns an encoder for errors returned by the version +// about endpoint. +func EncodeVersionError(encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, formatter func(ctx context.Context, err error) goahttp.Statuser) func(context.Context, http.ResponseWriter, error) error { + encodeError := goahttp.ErrorEncoder(encoder, formatter) + return func(ctx context.Context, w http.ResponseWriter, v error) error { + var en goa.GoaErrorNamer + if !errors.As(v, &en) { + return encodeError(ctx, w, v) + } + switch en.GoaErrorName() { + case "unauthorized": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionUnauthorizedResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusUnauthorized) + return enc.Encode(body) + case "forbidden": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionForbiddenResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusForbidden) + return enc.Encode(body) + case "bad_request": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionBadRequestResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusBadRequest) + return enc.Encode(body) + case "not_found": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionNotFoundResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusNotFound) + return enc.Encode(body) + case "conflict": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionConflictResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusConflict) + return enc.Encode(body) + case "unsupported_media": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionUnsupportedMediaResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusUnsupportedMediaType) + return enc.Encode(body) + case "invalid": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionInvalidResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusUnprocessableEntity) + return enc.Encode(body) + case "invariant_violation": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionInvariantViolationResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusInternalServerError) + return enc.Encode(body) + case "unexpected": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionUnexpectedResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusInternalServerError) + return enc.Encode(body) + case "gateway_error": + var res *goa.ServiceError + errors.As(v, &res) + ctx = context.WithValue(ctx, goahttp.ContentTypeKey, "application/json") + enc := encoder(ctx, w) + var body any + if formatter != nil { + body = formatter(ctx, res) + } else { + body = NewVersionGatewayErrorResponseBody(res) + } + w.Header().Set("goa-error", res.GoaErrorName()) + w.WriteHeader(http.StatusBadGateway) + return enc.Encode(body) + default: + return encodeError(ctx, w, v) + } + } +} diff --git a/server/gen/http/about/server/paths.go b/server/gen/http/about/server/paths.go index ac7d31510..af5a0828f 100644 --- a/server/gen/http/about/server/paths.go +++ b/server/gen/http/about/server/paths.go @@ -11,3 +11,8 @@ package server func OpenapiAboutPath() string { return "/openapi.yaml" } + +// VersionAboutPath returns the URL path to the about service version HTTP endpoint. +func VersionAboutPath() string { + return "/version" +} diff --git a/server/gen/http/about/server/server.go b/server/gen/http/about/server/server.go index 3e54a182b..12d788f62 100644 --- a/server/gen/http/about/server/server.go +++ b/server/gen/http/about/server/server.go @@ -23,6 +23,7 @@ import ( type Server struct { Mounts []*MountPoint Openapi http.Handler + Version http.Handler } // MountPoint holds information about the mounted endpoints. @@ -53,8 +54,10 @@ func New( return &Server{ Mounts: []*MountPoint{ {"Openapi", "GET", "/openapi.yaml"}, + {"Version", "GET", "/version"}, }, Openapi: NewOpenapiHandler(e.Openapi, mux, decoder, encoder, errhandler, formatter), + Version: NewVersionHandler(e.Version, mux, decoder, encoder, errhandler, formatter), } } @@ -64,6 +67,7 @@ func (s *Server) Service() string { return "about" } // Use wraps the server handlers with the given middleware. func (s *Server) Use(m func(http.Handler) http.Handler) { s.Openapi = m(s.Openapi) + s.Version = m(s.Version) } // MethodNames returns the methods served. @@ -72,6 +76,7 @@ func (s *Server) MethodNames() []string { return about.MethodNames[:] } // Mount configures the mux to serve the about endpoints. func Mount(mux goahttp.Muxer, h *Server) { MountOpenapiHandler(mux, h.Openapi) + MountVersionHandler(mux, h.Version) } // Mount configures the mux to serve the about endpoints. @@ -159,3 +164,49 @@ func NewOpenapiHandler( } }) } + +// MountVersionHandler configures the mux to serve the "about" service +// "version" endpoint. +func MountVersionHandler(mux goahttp.Muxer, h http.Handler) { + f, ok := h.(http.HandlerFunc) + if !ok { + f = func(w http.ResponseWriter, r *http.Request) { + h.ServeHTTP(w, r) + } + } + mux.Handle("GET", "/version", otelhttp.WithRouteTag("/version", f).ServeHTTP) +} + +// NewVersionHandler creates a HTTP handler which loads the HTTP request and +// calls the "about" service "version" endpoint. +func NewVersionHandler( + endpoint goa.Endpoint, + mux goahttp.Muxer, + decoder func(*http.Request) goahttp.Decoder, + encoder func(context.Context, http.ResponseWriter) goahttp.Encoder, + errhandler func(context.Context, http.ResponseWriter, error), + formatter func(ctx context.Context, err error) goahttp.Statuser, +) http.Handler { + var ( + encodeResponse = EncodeVersionResponse(encoder) + encodeError = EncodeVersionError(encoder, formatter) + ) + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + ctx := context.WithValue(r.Context(), goahttp.AcceptTypeKey, r.Header.Get("Accept")) + ctx = context.WithValue(ctx, goa.MethodKey, "version") + ctx = context.WithValue(ctx, goa.ServiceKey, "about") + var err error + res, err := endpoint(ctx, nil) + if err != nil { + if err := encodeError(ctx, w, err); err != nil && errhandler != nil { + errhandler(ctx, w, err) + } + return + } + if err := encodeResponse(ctx, w, res); err != nil { + if errhandler != nil { + errhandler(ctx, w, err) + } + } + }) +} diff --git a/server/gen/http/about/server/types.go b/server/gen/http/about/server/types.go index 518ec6c98..54c0dde4b 100644 --- a/server/gen/http/about/server/types.go +++ b/server/gen/http/about/server/types.go @@ -8,9 +8,21 @@ package server import ( + about "github.com/speakeasy-api/gram/server/gen/about" goa "goa.design/goa/v3/pkg" ) +// VersionResponseBody is the type of the "about" service "version" endpoint +// HTTP response body. +type VersionResponseBody struct { + // The version of the Gram server + ServerVersion string `form:"server_version" json:"server_version" xml:"server_version"` + // The version of the Gram dashboard + DashboardVersion string `form:"dashboard_version" json:"dashboard_version" xml:"dashboard_version"` + // The Git SHA of the current build + GitSha string `form:"git_sha" json:"git_sha" xml:"git_sha"` +} + // OpenapiUnauthorizedResponseBody is the type of the "about" service "openapi" // endpoint HTTP response body for the "unauthorized" error. type OpenapiUnauthorizedResponseBody struct { @@ -191,6 +203,197 @@ type OpenapiGatewayErrorResponseBody struct { Fault bool `form:"fault" json:"fault" xml:"fault"` } +// VersionUnauthorizedResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "unauthorized" error. +type VersionUnauthorizedResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// VersionForbiddenResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "forbidden" error. +type VersionForbiddenResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// VersionBadRequestResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "bad_request" error. +type VersionBadRequestResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// VersionNotFoundResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "not_found" error. +type VersionNotFoundResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// VersionConflictResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "conflict" error. +type VersionConflictResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// VersionUnsupportedMediaResponseBody is the type of the "about" service +// "version" endpoint HTTP response body for the "unsupported_media" error. +type VersionUnsupportedMediaResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// VersionInvalidResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "invalid" error. +type VersionInvalidResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// VersionInvariantViolationResponseBody is the type of the "about" service +// "version" endpoint HTTP response body for the "invariant_violation" error. +type VersionInvariantViolationResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// VersionUnexpectedResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "unexpected" error. +type VersionUnexpectedResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// VersionGatewayErrorResponseBody is the type of the "about" service "version" +// endpoint HTTP response body for the "gateway_error" error. +type VersionGatewayErrorResponseBody struct { + // Name is the name of this class of errors. + Name string `form:"name" json:"name" xml:"name"` + // ID is a unique identifier for this particular occurrence of the problem. + ID string `form:"id" json:"id" xml:"id"` + // Message is a human-readable explanation specific to this occurrence of the + // problem. + Message string `form:"message" json:"message" xml:"message"` + // Is the error temporary? + Temporary bool `form:"temporary" json:"temporary" xml:"temporary"` + // Is the error a timeout? + Timeout bool `form:"timeout" json:"timeout" xml:"timeout"` + // Is the error a server-side fault? + Fault bool `form:"fault" json:"fault" xml:"fault"` +} + +// NewVersionResponseBody builds the HTTP response body from the result of the +// "version" endpoint of the "about" service. +func NewVersionResponseBody(res *about.VersionResult) *VersionResponseBody { + body := &VersionResponseBody{ + ServerVersion: res.ServerVersion, + DashboardVersion: res.DashboardVersion, + GitSha: res.GitSha, + } + return body +} + // NewOpenapiUnauthorizedResponseBody builds the HTTP response body from the // result of the "openapi" endpoint of the "about" service. func NewOpenapiUnauthorizedResponseBody(res *goa.ServiceError) *OpenapiUnauthorizedResponseBody { @@ -330,3 +533,143 @@ func NewOpenapiGatewayErrorResponseBody(res *goa.ServiceError) *OpenapiGatewayEr } return body } + +// NewVersionUnauthorizedResponseBody builds the HTTP response body from the +// result of the "version" endpoint of the "about" service. +func NewVersionUnauthorizedResponseBody(res *goa.ServiceError) *VersionUnauthorizedResponseBody { + body := &VersionUnauthorizedResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewVersionForbiddenResponseBody builds the HTTP response body from the +// result of the "version" endpoint of the "about" service. +func NewVersionForbiddenResponseBody(res *goa.ServiceError) *VersionForbiddenResponseBody { + body := &VersionForbiddenResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewVersionBadRequestResponseBody builds the HTTP response body from the +// result of the "version" endpoint of the "about" service. +func NewVersionBadRequestResponseBody(res *goa.ServiceError) *VersionBadRequestResponseBody { + body := &VersionBadRequestResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewVersionNotFoundResponseBody builds the HTTP response body from the result +// of the "version" endpoint of the "about" service. +func NewVersionNotFoundResponseBody(res *goa.ServiceError) *VersionNotFoundResponseBody { + body := &VersionNotFoundResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewVersionConflictResponseBody builds the HTTP response body from the result +// of the "version" endpoint of the "about" service. +func NewVersionConflictResponseBody(res *goa.ServiceError) *VersionConflictResponseBody { + body := &VersionConflictResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewVersionUnsupportedMediaResponseBody builds the HTTP response body from +// the result of the "version" endpoint of the "about" service. +func NewVersionUnsupportedMediaResponseBody(res *goa.ServiceError) *VersionUnsupportedMediaResponseBody { + body := &VersionUnsupportedMediaResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewVersionInvalidResponseBody builds the HTTP response body from the result +// of the "version" endpoint of the "about" service. +func NewVersionInvalidResponseBody(res *goa.ServiceError) *VersionInvalidResponseBody { + body := &VersionInvalidResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewVersionInvariantViolationResponseBody builds the HTTP response body from +// the result of the "version" endpoint of the "about" service. +func NewVersionInvariantViolationResponseBody(res *goa.ServiceError) *VersionInvariantViolationResponseBody { + body := &VersionInvariantViolationResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewVersionUnexpectedResponseBody builds the HTTP response body from the +// result of the "version" endpoint of the "about" service. +func NewVersionUnexpectedResponseBody(res *goa.ServiceError) *VersionUnexpectedResponseBody { + body := &VersionUnexpectedResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} + +// NewVersionGatewayErrorResponseBody builds the HTTP response body from the +// result of the "version" endpoint of the "about" service. +func NewVersionGatewayErrorResponseBody(res *goa.ServiceError) *VersionGatewayErrorResponseBody { + body := &VersionGatewayErrorResponseBody{ + Name: res.Name, + ID: res.ID, + Message: res.Message, + Temporary: res.Temporary, + Timeout: res.Timeout, + Fault: res.Fault, + } + return body +} diff --git a/server/gen/http/auth/client/cli.go b/server/gen/http/auth/client/cli.go index 0db0b4211..438e0e9c6 100644 --- a/server/gen/http/auth/client/cli.go +++ b/server/gen/http/auth/client/cli.go @@ -79,7 +79,7 @@ func BuildRegisterPayload(authRegisterBody string, authRegisterSessionToken stri { err = json.Unmarshal([]byte(authRegisterBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"org_name\": \"Est cumque nemo officiis omnis.\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"org_name\": \"Eaque asperiores excepturi.\"\n }'") } } var sessionToken *string diff --git a/server/gen/http/cli/gram/cli.go b/server/gen/http/cli/gram/cli.go index cdec9ac58..6fc262abd 100644 --- a/server/gen/http/cli/gram/cli.go +++ b/server/gen/http/cli/gram/cli.go @@ -41,7 +41,7 @@ import ( // command (subcommand1|subcommand2|...) func UsageCommands() []string { return []string{ - "about openapi", + "about (openapi|version)", "assets (serve-image|upload-image|upload-functions|upload-open-ap-iv3|serve-open-ap-iv3|list-assets)", "auth (callback|login|switch-scopes|logout|register|info)", "chat (list-chats|load-chat|credit-usage)", @@ -66,10 +66,10 @@ func UsageCommands() []string { // UsageExamples produces an example of a valid invocation of the CLI tool. func UsageExamples() string { return os.Args[0] + ` about openapi` + "\n" + - os.Args[0] + ` assets serve-image --id "Amet maxime recusandae sit et." --session-token "Voluptatem et sed." --apikey-token "Et accusamus dignissimos quaerat numquam ut."` + "\n" + - os.Args[0] + ` auth callback --code "Ut voluptatem suscipit neque suscipit quo minima."` + "\n" + - os.Args[0] + ` chat list-chats --session-token "Sed rerum repellat dolorem voluptatem quasi." --project-slug-input "Pariatur maiores dolorum."` + "\n" + - os.Args[0] + ` deployments get-deployment --id "Laboriosam accusamus quisquam." --apikey-token "Quae et sit laborum officiis consectetur velit." --session-token "Nobis laboriosam ut voluptatem dolorem expedita." --project-slug-input "Qui in suscipit quibusdam."` + "\n" + + os.Args[0] + ` assets serve-image --id "Mollitia ut magni voluptas culpa porro enim." --session-token "Incidunt ut." --apikey-token "Et eos at tempore."` + "\n" + + os.Args[0] + ` auth callback --code "Corporis aut deserunt sint autem id."` + "\n" + + os.Args[0] + ` chat list-chats --session-token "Est placeat quam soluta sed." --project-slug-input "Perferendis ducimus alias."` + "\n" + + os.Args[0] + ` deployments get-deployment --id "Rerum ut et est molestiae non possimus." --apikey-token "Ipsa iusto corrupti officia asperiores et." --session-token "Vel autem voluptatem." --project-slug-input "Reiciendis labore."` + "\n" + "" } @@ -87,6 +87,8 @@ func ParseEndpoint( aboutOpenapiFlags = flag.NewFlagSet("openapi", flag.ExitOnError) + aboutVersionFlags = flag.NewFlagSet("version", flag.ExitOnError) + assetsFlags = flag.NewFlagSet("assets", flag.ContinueOnError) assetsServeImageFlags = flag.NewFlagSet("serve-image", flag.ExitOnError) @@ -513,6 +515,7 @@ func ParseEndpoint( ) aboutFlags.Usage = aboutUsage aboutOpenapiFlags.Usage = aboutOpenapiUsage + aboutVersionFlags.Usage = aboutVersionUsage assetsFlags.Usage = assetsUsage assetsServeImageFlags.Usage = assetsServeImageUsage @@ -698,6 +701,9 @@ func ParseEndpoint( case "openapi": epf = aboutOpenapiFlags + case "version": + epf = aboutVersionFlags + } case "assets": @@ -1022,6 +1028,8 @@ func ParseEndpoint( switch epn { case "openapi": endpoint = c.Openapi() + case "version": + endpoint = c.Version() } case "assets": c := assetsc.NewClient(scheme, host, doer, enc, dec, restore) @@ -1342,6 +1350,7 @@ func aboutUsage() { fmt.Fprintf(os.Stderr, "Usage:\n %s [globalflags] about COMMAND [flags]\n\n", os.Args[0]) fmt.Fprintln(os.Stderr, "COMMAND:") fmt.Fprintln(os.Stderr, ` openapi: The OpenAPI description of the Gram API.`) + fmt.Fprintln(os.Stderr, ` version: Get version information for the Gram components.`) fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Additional help:") fmt.Fprintf(os.Stderr, " %s about COMMAND --help\n", os.Args[0]) @@ -1363,6 +1372,23 @@ func aboutOpenapiUsage() { fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `about openapi`) } +func aboutVersionUsage() { + // Header with flags + fmt.Fprintf(os.Stderr, "%s [flags] about version", os.Args[0]) + fmt.Fprintln(os.Stderr) + + // Description + fmt.Fprintln(os.Stderr) + fmt.Fprintln(os.Stderr, `Get version information for the Gram components.`) + + // Flags list + + // Example block: pass example as parameter to avoid format parsing of % characters + fmt.Fprintln(os.Stderr) + fmt.Fprintln(os.Stderr, "Example:") + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `about version`) +} + // assetsUsage displays the usage of the assets command and its subcommands. func assetsUsage() { fmt.Fprintln(os.Stderr, `Manages assets used by Gram projects.`) @@ -1398,7 +1424,7 @@ func assetsServeImageUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets serve-image --id "Amet maxime recusandae sit et." --session-token "Voluptatem et sed." --apikey-token "Et accusamus dignissimos quaerat numquam ut."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets serve-image --id "Mollitia ut magni voluptas culpa porro enim." --session-token "Incidunt ut." --apikey-token "Et eos at tempore."`) } func assetsUploadImageUsage() { @@ -1427,7 +1453,7 @@ func assetsUploadImageUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets upload-image --content-type "Est temporibus doloremque necessitatibus." --content-length 7508557449425700848 --apikey-token "Voluptates quibusdam non laboriosam ut itaque placeat." --project-slug-input "Consectetur praesentium." --session-token "Aut modi ducimus et et voluptatem." --stream "goa.png"`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets upload-image --content-type "Et dolor nisi aut doloremque animi assumenda." --content-length 5254674163527820156 --apikey-token "Aliquid omnis saepe et." --project-slug-input "Sunt debitis harum et nihil rerum reprehenderit." --session-token "Omnis alias repellat dolores." --stream "goa.png"`) } func assetsUploadFunctionsUsage() { @@ -1456,7 +1482,7 @@ func assetsUploadFunctionsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets upload-functions --content-type "Occaecati suscipit vero reprehenderit eligendi cupiditate." --content-length 9190834562121260725 --apikey-token "Eaque minima error." --project-slug-input "Eos aliquam rerum consequatur." --session-token "Voluptas inventore." --stream "goa.png"`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets upload-functions --content-type "Dolor ad rerum." --content-length 5429330018467874146 --apikey-token "Ullam officiis non id." --project-slug-input "Praesentium sit incidunt consequuntur nihil consequuntur." --session-token "Dicta tempore earum illum." --stream "goa.png"`) } func assetsUploadOpenAPIv3Usage() { @@ -1485,7 +1511,7 @@ func assetsUploadOpenAPIv3Usage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets upload-open-ap-iv3 --content-type "Animi ullam officiis non id veniam." --content-length 2176964373327730746 --apikey-token "Incidunt consequuntur nihil consequuntur quos dicta." --project-slug-input "Earum illum incidunt officia." --session-token "Nihil officiis enim expedita enim et." --stream "goa.png"`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets upload-open-ap-iv3 --content-type "Inventore nostrum cumque qui repudiandae." --content-length 8385747314717237283 --apikey-token "Ea delectus facere." --project-slug-input "Facilis repellat soluta reiciendis quia vel." --session-token "Odio enim culpa qui." --stream "goa.png"`) } func assetsServeOpenAPIv3Usage() { @@ -1510,7 +1536,7 @@ func assetsServeOpenAPIv3Usage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets serve-open-ap-iv3 --id "Facere voluptatem." --project-id "Repellat soluta reiciendis." --apikey-token "Vel quia odio." --session-token "Culpa qui animi sunt sunt non aut."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets serve-open-ap-iv3 --id "Dolor cupiditate sint facilis alias ut." --project-id "Sit quam ut error eveniet placeat autem." --apikey-token "Delectus autem placeat rem nihil." --session-token "Quasi quia et consequatur et."`) } func assetsListAssetsUsage() { @@ -1533,7 +1559,7 @@ func assetsListAssetsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets list-assets --session-token "Doloribus delectus." --project-slug-input "Placeat rem nihil repellendus." --apikey-token "Quia et consequatur et consequatur aliquid voluptates."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `assets list-assets --session-token "Minima laboriosam ipsam qui non." --project-slug-input "Quam recusandae ipsum." --apikey-token "Ut sint nihil rerum repellat qui."`) } // authUsage displays the usage of the auth command and its subcommands. @@ -1567,7 +1593,7 @@ func authCallbackUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `auth callback --code "Ut voluptatem suscipit neque suscipit quo minima."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `auth callback --code "Corporis aut deserunt sint autem id."`) } func authLoginUsage() { @@ -1607,7 +1633,7 @@ func authSwitchScopesUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `auth switch-scopes --organization-id "In occaecati nobis dolore facilis atque nesciunt." --project-id "Qui voluptatibus exercitationem nihil voluptatum eligendi." --session-token "Harum ut velit accusamus architecto voluptate."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `auth switch-scopes --organization-id "Ut molestiae." --project-id "Quasi et omnis nihil repudiandae aut." --session-token "Aliquam sint velit qui quasi."`) } func authLogoutUsage() { @@ -1626,7 +1652,7 @@ func authLogoutUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `auth logout --session-token "Eos ipsa dolorum ut eum neque."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `auth logout --session-token "Adipisci aliquam."`) } func authRegisterUsage() { @@ -1648,8 +1674,8 @@ func authRegisterUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `auth register --body '{ - "org_name": "Est cumque nemo officiis omnis." - }' --session-token "Et sunt inventore sed."`) + "org_name": "Eaque asperiores excepturi." + }' --session-token "Aut magni aut natus rerum."`) } func authInfoUsage() { @@ -1668,7 +1694,7 @@ func authInfoUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `auth info --session-token "Aut magni aut natus rerum."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `auth info --session-token "Ut porro ut repudiandae iure qui."`) } // chatUsage displays the usage of the chat command and its subcommands. @@ -1701,7 +1727,7 @@ func chatListChatsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `chat list-chats --session-token "Sed rerum repellat dolorem voluptatem quasi." --project-slug-input "Pariatur maiores dolorum."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `chat list-chats --session-token "Est placeat quam soluta sed." --project-slug-input "Perferendis ducimus alias."`) } func chatLoadChatUsage() { @@ -1724,7 +1750,7 @@ func chatLoadChatUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `chat load-chat --id "Harum porro." --session-token "Non architecto." --project-slug-input "Velit iure et corrupti quia quis."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `chat load-chat --id "Repellendus cupiditate iste inventore." --session-token "Accusamus aut." --project-slug-input "Tempore facere minus ratione qui facilis laudantium."`) } func chatCreditUsageUsage() { @@ -1745,7 +1771,7 @@ func chatCreditUsageUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `chat credit-usage --session-token "Autem quia qui." --project-slug-input "Pariatur qui."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `chat credit-usage --session-token "Officiis consectetur velit ipsa." --project-slug-input "Laboriosam ut voluptatem dolorem."`) } // deploymentsUsage displays the usage of the deployments command and its @@ -1788,7 +1814,7 @@ func deploymentsGetDeploymentUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments get-deployment --id "Laboriosam accusamus quisquam." --apikey-token "Quae et sit laborum officiis consectetur velit." --session-token "Nobis laboriosam ut voluptatem dolorem expedita." --project-slug-input "Qui in suscipit quibusdam."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments get-deployment --id "Rerum ut et est molestiae non possimus." --apikey-token "Ipsa iusto corrupti officia asperiores et." --session-token "Vel autem voluptatem." --project-slug-input "Reiciendis labore."`) } func deploymentsGetLatestDeploymentUsage() { @@ -1811,7 +1837,7 @@ func deploymentsGetLatestDeploymentUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments get-latest-deployment --apikey-token "Debitis quos ut praesentium et." --session-token "Enim quae animi saepe ex possimus." --project-slug-input "Vero recusandae dolorem quibusdam corrupti dolores."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments get-latest-deployment --apikey-token "Ducimus cumque amet a id." --session-token "Placeat quasi ut rem." --project-slug-input "Aliquam laudantium in id sit vel praesentium."`) } func deploymentsGetActiveDeploymentUsage() { @@ -1834,7 +1860,7 @@ func deploymentsGetActiveDeploymentUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments get-active-deployment --apikey-token "Consequuntur consequatur praesentium sapiente laborum." --session-token "Veniam ut neque est dolor ut enim." --project-slug-input "Dolorem quia quam temporibus iure non nisi."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments get-active-deployment --apikey-token "Dolor iste." --session-token "Ex nihil ex eligendi." --project-slug-input "Sed laudantium voluptatum qui est."`) } func deploymentsCreateDeploymentUsage() { @@ -1863,25 +1889,31 @@ func deploymentsCreateDeploymentUsage() { fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments create-deployment --body '{ "external_id": "bc5f4a555e933e6861d12edba4c2d87ef6caf8e6", - "external_url": "Quidem odit officia velit occaecati autem est.", + "external_url": "Omnis voluptatem sed itaque ad eos.", "functions": [ { - "asset_id": "Sed itaque ad.", - "name": "Dolores doloremque nobis.", - "runtime": "Laboriosam vel omnis.", - "slug": "oo3" + "asset_id": "Quo dolorem enim necessitatibus ducimus recusandae.", + "name": "Odio omnis praesentium.", + "runtime": "Asperiores necessitatibus accusamus repudiandae iste non.", + "slug": "hmj" }, { - "asset_id": "Sed itaque ad.", - "name": "Dolores doloremque nobis.", - "runtime": "Laboriosam vel omnis.", - "slug": "oo3" + "asset_id": "Quo dolorem enim necessitatibus ducimus recusandae.", + "name": "Odio omnis praesentium.", + "runtime": "Asperiores necessitatibus accusamus repudiandae iste non.", + "slug": "hmj" }, { - "asset_id": "Sed itaque ad.", - "name": "Dolores doloremque nobis.", - "runtime": "Laboriosam vel omnis.", - "slug": "oo3" + "asset_id": "Quo dolorem enim necessitatibus ducimus recusandae.", + "name": "Odio omnis praesentium.", + "runtime": "Asperiores necessitatibus accusamus repudiandae iste non.", + "slug": "hmj" + }, + { + "asset_id": "Quo dolorem enim necessitatibus ducimus recusandae.", + "name": "Odio omnis praesentium.", + "runtime": "Asperiores necessitatibus accusamus repudiandae iste non.", + "slug": "hmj" } ], "github_pr": "1234", @@ -1889,31 +1921,40 @@ func deploymentsCreateDeploymentUsage() { "github_sha": "f33e693e9e12552043bc0ec5c37f1b8a9e076161", "openapiv3_assets": [ { - "asset_id": "Veniam explicabo et est aut cumque alias.", - "name": "Et blanditiis et.", - "slug": "cvv" + "asset_id": "Nobis blanditiis omnis.", + "name": "Cumque qui laboriosam vel.", + "slug": "ycy" + }, + { + "asset_id": "Nobis blanditiis omnis.", + "name": "Cumque qui laboriosam vel.", + "slug": "ycy" }, { - "asset_id": "Veniam explicabo et est aut cumque alias.", - "name": "Et blanditiis et.", - "slug": "cvv" + "asset_id": "Nobis blanditiis omnis.", + "name": "Cumque qui laboriosam vel.", + "slug": "ycy" } ], "packages": [ { - "name": "Debitis suscipit ipsa quo dolorem enim necessitatibus.", - "version": "Recusandae recusandae." + "name": "Incidunt natus exercitationem est.", + "version": "Non odit laudantium eligendi quia sed." + }, + { + "name": "Incidunt natus exercitationem est.", + "version": "Non odit laudantium eligendi quia sed." }, { - "name": "Debitis suscipit ipsa quo dolorem enim necessitatibus.", - "version": "Recusandae recusandae." + "name": "Incidunt natus exercitationem est.", + "version": "Non odit laudantium eligendi quia sed." }, { - "name": "Debitis suscipit ipsa quo dolorem enim necessitatibus.", - "version": "Recusandae recusandae." + "name": "Incidunt natus exercitationem est.", + "version": "Non odit laudantium eligendi quia sed." } ] - }' --apikey-token "Omnis praesentium beatae in dolor aut." --session-token "Asperiores necessitatibus accusamus repudiandae iste non." --project-slug-input "Ut incidunt." --idempotency-key "01jqq0ajmb4qh9eppz48dejr2m"`) + }' --apikey-token "Eveniet numquam sint quam." --session-token "Nisi rerum aut distinctio quo sunt." --project-slug-input "Aut minima." --idempotency-key "01jqq0ajmb4qh9eppz48dejr2m"`) } func deploymentsEvolveUsage() { @@ -1939,61 +1980,64 @@ func deploymentsEvolveUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments evolve --body '{ - "deployment_id": "Soluta aperiam sit quaerat dolorem.", + "deployment_id": "Necessitatibus non quaerat.", "exclude_functions": [ - "Sapiente illum deleniti laudantium ipsum non.", - "Molestiae veniam at cumque." + "Quam deleniti occaecati.", + "Autem non dolor minima.", + "Enim aliquam quia debitis odio ex." ], "exclude_openapiv3_assets": [ - "Quibusdam quia ea consequuntur.", - "Non quaerat consequuntur quam exercitationem molestiae maiores." + "Dolor sit voluptatibus.", + "Error suscipit optio.", + "Eum corporis harum." ], "exclude_packages": [ - "Cum vel aliquid rerum at repellendus est.", - "Accusantium est dolor sit.", - "Consequuntur error suscipit optio sunt eum." + "Deleniti laudantium ipsum non.", + "Molestiae veniam at cumque.", + "Inventore reprehenderit.", + "Eos inventore aliquam libero libero sed ad." ], "upsert_functions": [ { - "asset_id": "Sed itaque ad.", - "name": "Dolores doloremque nobis.", - "runtime": "Laboriosam vel omnis.", - "slug": "oo3" + "asset_id": "Quo dolorem enim necessitatibus ducimus recusandae.", + "name": "Odio omnis praesentium.", + "runtime": "Asperiores necessitatibus accusamus repudiandae iste non.", + "slug": "hmj" }, { - "asset_id": "Sed itaque ad.", - "name": "Dolores doloremque nobis.", - "runtime": "Laboriosam vel omnis.", - "slug": "oo3" + "asset_id": "Quo dolorem enim necessitatibus ducimus recusandae.", + "name": "Odio omnis praesentium.", + "runtime": "Asperiores necessitatibus accusamus repudiandae iste non.", + "slug": "hmj" } ], "upsert_openapiv3_assets": [ { - "asset_id": "Veniam explicabo et est aut cumque alias.", - "name": "Et blanditiis et.", - "slug": "cvv" + "asset_id": "Nobis blanditiis omnis.", + "name": "Cumque qui laboriosam vel.", + "slug": "ycy" }, { - "asset_id": "Veniam explicabo et est aut cumque alias.", - "name": "Et blanditiis et.", - "slug": "cvv" + "asset_id": "Nobis blanditiis omnis.", + "name": "Cumque qui laboriosam vel.", + "slug": "ycy" } ], "upsert_packages": [ { - "name": "Qui voluptatem sint.", - "version": "Quisquam minus dolore consequuntur eum necessitatibus." + "name": "Molestiae maiores voluptatem.", + "version": "Cum vel aliquid rerum at repellendus est." }, { - "name": "Qui voluptatem sint.", - "version": "Quisquam minus dolore consequuntur eum necessitatibus." + "name": "Molestiae maiores voluptatem.", + "version": "Cum vel aliquid rerum at repellendus est." }, { - "name": "Qui voluptatem sint.", - "version": "Quisquam minus dolore consequuntur eum necessitatibus." + "name": "Molestiae maiores voluptatem.", + "version": "Cum vel aliquid rerum at repellendus est." } ] - }' --apikey-token "Inventore reprehenderit." --session-token "Eos inventore aliquam libero libero sed ad." --project-slug-input "Nisi quam deleniti."`) + }' --apikey-token "Animi quas." --session-token "Error quia aut et sit possimus." --project-slug-input "Et assumenda ea quia neque id amet."`) } func deploymentsRedeployUsage() { @@ -2019,8 +2063,8 @@ func deploymentsRedeployUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments redeploy --body '{ - "deployment_id": "Hic rerum laborum." - }' --apikey-token "In qui culpa sed quae dolorem." --session-token "Pariatur autem." --project-slug-input "Animi ut nulla aliquam ut."`) + "deployment_id": "Omnis iure eaque qui qui excepturi." + }' --apikey-token "Esse est omnis fuga illum expedita corporis." --session-token "Velit sunt iusto." --project-slug-input "Vitae sed doloremque et perspiciatis."`) } func deploymentsListDeploymentsUsage() { @@ -2045,7 +2089,7 @@ func deploymentsListDeploymentsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments list-deployments --cursor "Vitae sed doloremque et perspiciatis." --apikey-token "Aliquam id." --session-token "Enim accusantium nisi est enim." --project-slug-input "Quidem sint illum ut blanditiis."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments list-deployments --cursor "Beatae cupiditate." --apikey-token "Et eos nam dolorem ipsum at." --session-token "Eos et voluptas at facilis numquam." --project-slug-input "Alias totam non aliquam maxime."`) } func deploymentsGetDeploymentLogsUsage() { @@ -2072,7 +2116,7 @@ func deploymentsGetDeploymentLogsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments get-deployment-logs --deployment-id "Velit illum perferendis omnis saepe." --cursor "Est molestiae omnis ducimus ut et delectus." --apikey-token "Voluptate in cumque molestiae." --session-token "Ut nostrum sint modi." --project-slug-input "Itaque inventore distinctio aut."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `deployments get-deployment-logs --deployment-id "Odio voluptatibus exercitationem." --cursor "Ut natus occaecati." --apikey-token "Facere omnis ut vel quia." --session-token "A eos." --project-slug-input "Saepe aut rerum ipsam laboriosam."`) } // domainsUsage displays the usage of the domains command and its subcommands. @@ -2105,7 +2149,7 @@ func domainsGetDomainUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `domains get-domain --session-token "Porro commodi adipisci id praesentium deserunt nisi." --project-slug-input "Ratione qui qui ullam et non."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `domains get-domain --session-token "Sit quae aut voluptatem dignissimos." --project-slug-input "Perferendis atque molestias architecto officia ipsam."`) } func domainsCreateDomainUsage() { @@ -2129,8 +2173,8 @@ func domainsCreateDomainUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `domains create-domain --body '{ - "domain": "Id ullam." - }' --session-token "Id nesciunt est velit et aliquam." --project-slug-input "Consequuntur vitae placeat accusamus id ut nulla."`) + "domain": "Repudiandae placeat molestiae qui voluptatem sapiente." + }' --session-token "Incidunt et eligendi qui aliquam odit impedit." --project-slug-input "Repellendus autem consectetur."`) } func domainsDeleteDomainUsage() { @@ -2151,7 +2195,7 @@ func domainsDeleteDomainUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `domains delete-domain --session-token "Exercitationem ut rerum quia nulla fuga aut." --project-slug-input "Magni autem ipsum ab."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `domains delete-domain --session-token "In et voluptatem nulla dicta." --project-slug-input "Voluptate dolor."`) } // environmentsUsage displays the usage of the environments command and its @@ -2189,28 +2233,20 @@ func environmentsCreateEnvironmentUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `environments create-environment --body '{ - "description": "Dignissimos iste eos asperiores officia molestiae.", + "description": "Cumque molestiae saepe et.", "entries": [ { - "name": "Consequatur cum neque.", - "value": "Architecto nemo quasi qui libero sint." - }, - { - "name": "Consequatur cum neque.", - "value": "Architecto nemo quasi qui libero sint." + "name": "Accusamus illum aut quo voluptas.", + "value": "Culpa nobis fuga quibusdam maxime eum natus." }, { - "name": "Consequatur cum neque.", - "value": "Architecto nemo quasi qui libero sint." - }, - { - "name": "Consequatur cum neque.", - "value": "Architecto nemo quasi qui libero sint." + "name": "Accusamus illum aut quo voluptas.", + "value": "Culpa nobis fuga quibusdam maxime eum natus." } ], - "name": "Et minus fugiat.", - "organization_id": "Cum quo aspernatur itaque illo sint iusto." - }' --session-token "Molestias alias labore." --project-slug-input "Cumque molestiae saepe et."`) + "name": "Alias labore.", + "organization_id": "Qui libero sint aut." + }' --session-token "Deserunt voluptas commodi sint mollitia et ea." --project-slug-input "Necessitatibus praesentium."`) } func environmentsListEnvironmentsUsage() { @@ -2231,7 +2267,7 @@ func environmentsListEnvironmentsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `environments list-environments --session-token "Magni nihil rerum id adipisci dolorem." --project-slug-input "Blanditiis et minus modi exercitationem nam pariatur."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `environments list-environments --session-token "Vel accusantium beatae." --project-slug-input "Sed nemo iure animi perspiciatis soluta qui."`) } func environmentsUpdateEnvironmentUsage() { @@ -2257,24 +2293,31 @@ func environmentsUpdateEnvironmentUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `environments update-environment --body '{ - "description": "Sit asperiores deserunt ipsa ab.", + "description": "Tempora necessitatibus.", "entries_to_remove": [ - "Ut sint.", - "Vero vitae est.", - "Ut explicabo sit." + "Aliquam est dignissimos maxime aut ipsam qui.", + "Dolorem libero quaerat." ], "entries_to_update": [ { - "name": "Consequatur cum neque.", - "value": "Architecto nemo quasi qui libero sint." + "name": "Accusamus illum aut quo voluptas.", + "value": "Culpa nobis fuga quibusdam maxime eum natus." + }, + { + "name": "Accusamus illum aut quo voluptas.", + "value": "Culpa nobis fuga quibusdam maxime eum natus." }, { - "name": "Consequatur cum neque.", - "value": "Architecto nemo quasi qui libero sint." + "name": "Accusamus illum aut quo voluptas.", + "value": "Culpa nobis fuga quibusdam maxime eum natus." + }, + { + "name": "Accusamus illum aut quo voluptas.", + "value": "Culpa nobis fuga quibusdam maxime eum natus." } ], - "name": "Voluptate nihil amet nemo." - }' --slug "vz4" --session-token "Accusantium ut." --project-slug-input "Necessitatibus atque sed sint."`) + "name": "Sed sint voluptatibus neque quaerat." + }' --slug "hyk" --session-token "Quia similique facere illum sint voluptatem rem." --project-slug-input "Facilis quisquam quia at ad sed."`) } func environmentsDeleteEnvironmentUsage() { @@ -2297,7 +2340,7 @@ func environmentsDeleteEnvironmentUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `environments delete-environment --slug "gpf" --session-token "Quibusdam cupiditate ut molestiae debitis omnis." --project-slug-input "Quia distinctio."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `environments delete-environment --slug "rul" --session-token "Laborum ullam dolorem placeat." --project-slug-input "Minus eaque temporibus."`) } // instancesUsage displays the usage of the instances command and its @@ -2335,7 +2378,7 @@ func instancesGetInstanceUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `instances get-instance --toolset-slug "w5t" --environment-slug "glc" --session-token "Officiis deserunt ducimus tenetur modi." --project-slug-input "Consequatur consequuntur et voluptatum natus sit." --apikey-token "Sed voluptatum."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `instances get-instance --toolset-slug "n32" --environment-slug "e4z" --session-token "Necessitatibus dignissimos." --project-slug-input "Nobis assumenda sint omnis." --apikey-token "Illo eaque."`) } // integrationsUsage displays the usage of the integrations command and its @@ -2372,7 +2415,7 @@ func integrationsGetUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `integrations get --id "Fugit vel." --name "Omnis consequatur iste cumque." --session-token "Et qui sequi dolorem incidunt quas." --project-slug-input "Voluptatem et eius."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `integrations get --id "Officia et sint." --name "Officiis natus sapiente neque exercitationem adipisci." --session-token "Exercitationem labore id maxime minima nihil." --project-slug-input "Dolorem voluptatum aut."`) } func integrationsListUsage() { @@ -2396,10 +2439,10 @@ func integrationsListUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `integrations list --keywords '[ - "bq2", - "ebk", - "4qw" - ]' --session-token "Dolores et iusto unde maxime qui velit." --project-slug-input "Et ab ut magnam inventore."`) + "q8o", + "aeu", + "orr" + ]' --session-token "Optio voluptas perspiciatis deleniti." --project-slug-input "Fugit est qui ipsum hic."`) } // keysUsage displays the usage of the keys command and its subcommands. @@ -2433,13 +2476,13 @@ func keysCreateKeyUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `keys create-key --body '{ - "name": "Nihil repellendus velit dicta ex.", + "name": "Et ea corrupti sunt sed deserunt.", "scopes": [ - "Ut tenetur deserunt.", - "Vero odit blanditiis aut temporibus soluta.", - "Quod vitae quod fugiat sit natus." + "Cum in dolore laudantium itaque.", + "Voluptates qui magnam ullam consequatur.", + "Ad culpa fugit." ] - }' --session-token "Aut ab ullam architecto saepe et."`) + }' --session-token "Eaque rerum."`) } func keysListKeysUsage() { @@ -2458,7 +2501,7 @@ func keysListKeysUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `keys list-keys --session-token "Inventore occaecati blanditiis eaque in expedita autem."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `keys list-keys --session-token "Dolores sit placeat enim corrupti mollitia."`) } func keysRevokeKeyUsage() { @@ -2479,7 +2522,7 @@ func keysRevokeKeyUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `keys revoke-key --id "Cupiditate sit commodi quisquam velit neque." --session-token "Ratione magni assumenda et."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `keys revoke-key --id "Voluptates dolores doloremque consectetur." --session-token "Vitae quia nemo."`) } // mcpMetadataUsage displays the usage of the mcp-metadata command and its @@ -2514,7 +2557,7 @@ func mcpMetadataGetMcpMetadataUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `mcp-metadata get-mcp-metadata --toolset-slug "nky" --session-token "Veniam doloribus officia quos veritatis facilis." --project-slug-input "Et ea illo maxime voluptates dolores."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `mcp-metadata get-mcp-metadata --toolset-slug "s0e" --session-token "Voluptate illo expedita quis dolore." --project-slug-input "Distinctio maiores et eum laboriosam."`) } func mcpMetadataSetMcpMetadataUsage() { @@ -2538,10 +2581,10 @@ func mcpMetadataSetMcpMetadataUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `mcp-metadata set-mcp-metadata --body '{ - "external_documentation_url": "Voluptas voluptas.", - "logo_asset_id": "Temporibus autem.", - "toolset_slug": "tfb" - }' --session-token "Ab esse." --project-slug-input "Ut itaque."`) + "external_documentation_url": "Modi ut voluptatem harum iste.", + "logo_asset_id": "In officia sequi.", + "toolset_slug": "xy3" + }' --session-token "Voluptatem dolor aliquid accusamus quia." --project-slug-input "Reiciendis vel."`) } // packagesUsage displays the usage of the packages command and its subcommands. @@ -2581,18 +2624,18 @@ func packagesCreatePackageUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `packages create-package --body '{ - "description": "iad", - "image_asset_id": "jyc", + "description": "1nr", + "image_asset_id": "9pf", "keywords": [ - "Est sed.", - "Est eum necessitatibus minima asperiores sapiente.", - "Dignissimos sed minus." + "Est vel quibusdam.", + "At placeat velit voluptas fugit nostrum.", + "Nostrum accusamus iure est totam vel." ], - "name": "cle", - "summary": "l8u", - "title": "vwe", - "url": "sp6" - }' --apikey-token "Id enim reprehenderit velit." --session-token "Laudantium dolor asperiores voluptas reiciendis quia." --project-slug-input "Perferendis consequatur voluptatem qui accusamus."`) + "name": "n2f", + "summary": "rjy", + "title": "pp2", + "url": "4p2" + }' --apikey-token "Et incidunt eaque quam numquam sit est." --session-token "Hic et sed." --project-slug-input "Optio non reiciendis."`) } func packagesUpdatePackageUsage() { @@ -2618,18 +2661,18 @@ func packagesUpdatePackageUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `packages update-package --body '{ - "description": "i4f", - "id": "w0v", - "image_asset_id": "o52", + "description": "lu4", + "id": "wv2", + "image_asset_id": "m54", "keywords": [ - "Neque alias sequi praesentium deserunt.", - "Et quae aut nesciunt veritatis voluptates.", - "Sed corporis." + "Eaque deleniti.", + "Id quidem sit unde.", + "Sunt pariatur asperiores odit quidem." ], - "summary": "s5g", - "title": "vmk", - "url": "uag" - }' --apikey-token "Saepe sequi deserunt reiciendis." --session-token "Aut fugit." --project-slug-input "Et qui."`) + "summary": "ixs", + "title": "id1", + "url": "h69" + }' --apikey-token "Voluptas a voluptatem consequatur qui nam." --session-token "Sunt magni maxime ab sint." --project-slug-input "Soluta doloremque voluptatum repellat expedita."`) } func packagesListPackagesUsage() { @@ -2652,7 +2695,7 @@ func packagesListPackagesUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `packages list-packages --apikey-token "Ducimus ullam aut rerum voluptas." --session-token "Voluptatem consequatur qui nam placeat sunt." --project-slug-input "Maxime ab sint alias soluta doloremque voluptatum."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `packages list-packages --apikey-token "Voluptatem sit in quod iste doloremque." --session-token "Maiores distinctio voluptas omnis quae enim." --project-slug-input "Dicta voluptatem qui."`) } func packagesListVersionsUsage() { @@ -2677,7 +2720,7 @@ func packagesListVersionsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `packages list-versions --name "Voluptatem dignissimos saepe sapiente cumque aliquam nulla." --apikey-token "Ex provident deserunt et eos." --session-token "Dolorem excepturi." --project-slug-input "Sit in quod iste doloremque facilis."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `packages list-versions --name "Labore qui sequi qui aut enim sit." --apikey-token "Magni eveniet." --session-token "Qui est mollitia." --project-slug-input "Reiciendis voluptatem quas laborum sint."`) } func packagesPublishUsage() { @@ -2703,11 +2746,11 @@ func packagesPublishUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `packages publish --body '{ - "deployment_id": "Consequatur facilis quibusdam quae ex.", - "name": "Eligendi ex.", - "version": "Ratione repudiandae voluptas eligendi suscipit asperiores ea.", + "deployment_id": "Excepturi libero.", + "name": "Ipsa facere nulla.", + "version": "Voluptatibus occaecati provident.", "visibility": "private" - }' --apikey-token "Optio placeat dicta velit laborum." --session-token "Aut modi alias nulla." --project-slug-input "Similique temporibus."`) + }' --apikey-token "Quo aspernatur laboriosam vero." --session-token "Illum ut quos quis velit." --project-slug-input "Sit qui sapiente et natus sit porro."`) } // projectsUsage displays the usage of the projects command and its subcommands. @@ -2743,9 +2786,9 @@ func projectsCreateProjectUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `projects create-project --body '{ - "name": "who", - "organization_id": "Occaecati provident nostrum excepturi libero et." - }' --apikey-token "Accusantium illum." --session-token "Quos quis velit quas sit qui sapiente."`) + "name": "bme", + "organization_id": "Cum voluptatem est maiores dolores voluptatem natus." + }' --apikey-token "Et qui quia et necessitatibus iure non." --session-token "Sunt modi est corrupti amet numquam excepturi."`) } func projectsListProjectsUsage() { @@ -2768,7 +2811,7 @@ func projectsListProjectsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `projects list-projects --organization-id "Ducimus reiciendis sed." --apikey-token "Consequuntur sit." --session-token "Repellat voluptates earum aut."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `projects list-projects --organization-id "Mollitia eaque quibusdam et rerum illo dolore." --apikey-token "Possimus beatae ex ut." --session-token "Dolores odit."`) } func projectsSetLogoUsage() { @@ -2794,8 +2837,8 @@ func projectsSetLogoUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `projects set-logo --body '{ - "asset_id": "Velit est." - }' --apikey-token "Dolores unde nobis ut at rem facilis." --session-token "Et iste sint unde perspiciatis." --project-slug-input "Aut et aliquam."`) + "asset_id": "Qui praesentium numquam quisquam quisquam et." + }' --apikey-token "Maxime voluptate hic quia eius et vel." --session-token "Quis repudiandae ipsam." --project-slug-input "Sunt architecto laudantium atque pariatur velit."`) } // slackUsage displays the usage of the slack command and its subcommands. @@ -2830,7 +2873,7 @@ func slackCallbackUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `slack callback --state "Sed cum." --code "Architecto officiis assumenda veritatis dolor."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `slack callback --state "Nulla in officiis ea voluptas cum pariatur." --code "Ullam sed explicabo enim consequuntur dignissimos deserunt."`) } func slackLoginUsage() { @@ -2853,7 +2896,7 @@ func slackLoginUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `slack login --project-slug "Nihil veritatis libero et laudantium." --return-url "Quia numquam voluptate nulla explicabo repellendus libero." --session-token "Occaecati reprehenderit quia."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `slack login --project-slug "Dolores ut sed et ipsum magnam quam." --return-url "Et sit distinctio ratione nulla exercitationem temporibus." --session-token "Quasi a numquam."`) } func slackGetSlackConnectionUsage() { @@ -2874,7 +2917,7 @@ func slackGetSlackConnectionUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `slack get-slack-connection --session-token "Quis vitae ex et quaerat ipsa." --project-slug-input "Amet ut esse ea ut culpa distinctio."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `slack get-slack-connection --session-token "Odio placeat." --project-slug-input "Sunt cum nesciunt tempora qui ipsa."`) } func slackUpdateSlackConnectionUsage() { @@ -2898,8 +2941,8 @@ func slackUpdateSlackConnectionUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `slack update-slack-connection --body '{ - "default_toolset_slug": "Qui dolor." - }' --session-token "Omnis sint." --project-slug-input "Repellendus nam ut tenetur eligendi."`) + "default_toolset_slug": "Odio eligendi nam." + }' --session-token "Ad aut id accusamus eligendi." --project-slug-input "Aut quasi delectus totam ut."`) } func slackDeleteSlackConnectionUsage() { @@ -2920,7 +2963,7 @@ func slackDeleteSlackConnectionUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `slack delete-slack-connection --session-token "Voluptas vel quo sequi omnis." --project-slug-input "Minima non dicta ipsam numquam."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `slack delete-slack-connection --session-token "Expedita minima dolor necessitatibus numquam et." --project-slug-input "Qui repellendus porro eius occaecati et."`) } // templatesUsage displays the usage of the templates command and its @@ -2964,17 +3007,17 @@ func templatesCreateTemplateUsage() { fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates create-template --body '{ "arguments": "{\"name\":\"example\",\"email\":\"mail@example.com\"}", - "description": "Aut error in velit quos ea.", + "description": "Laudantium laudantium natus.", "engine": "mustache", - "kind": "higher_order_tool", - "name": "vcl", - "prompt": "Quidem aut.", + "kind": "prompt", + "name": "u87", + "prompt": "Sint expedita excepturi dolorem iure.", "tools_hint": [ - "Officia magni est odit corporis necessitatibus molestias.", - "Ut sed.", - "Impedit consequatur nemo est consequatur quasi et." + "Enim quia non facere.", + "Accusantium esse quia asperiores impedit.", + "Omnis voluptatum velit nam." ] - }' --apikey-token "Itaque labore." --session-token "Sunt consequuntur eveniet maxime sed consequatur." --project-slug-input "Voluptas sint expedita."`) + }' --apikey-token "Et qui impedit velit reiciendis eveniet saepe." --session-token "Facilis consequatur quo consequatur unde quos ducimus." --project-slug-input "Est aut esse cupiditate iusto."`) } func templatesUpdateTemplateUsage() { @@ -3001,17 +3044,17 @@ func templatesUpdateTemplateUsage() { fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates update-template --body '{ "arguments": "{\"name\":\"example\",\"email\":\"mail@example.com\"}", - "description": "Qui veritatis aperiam iste.", + "description": "Et debitis.", "engine": "mustache", - "id": "Nihil et dolores cum.", - "kind": "higher_order_tool", - "prompt": "Facere cumque nihil vitae eaque necessitatibus.", + "id": "Iure temporibus voluptas voluptatem omnis.", + "kind": "prompt", + "prompt": "Commodi suscipit ut dignissimos.", "tools_hint": [ - "Sint non iste rerum repellat quia sed.", - "Dicta minima quis atque similique ullam.", - "Rerum quas consequatur sed sint." + "Est dolorem corporis qui provident.", + "Corrupti eum vel atque voluptas asperiores.", + "Quia quia architecto quia ut rem." ] - }' --apikey-token "Perferendis qui qui autem ut quos similique." --session-token "Ducimus iure temporibus voluptas voluptatem omnis quas." --project-slug-input "Suscipit ut dignissimos provident et."`) + }' --apikey-token "Ipsum eum hic nihil dolor." --session-token "Vitae delectus." --project-slug-input "Non aliquam qui."`) } func templatesGetTemplateUsage() { @@ -3038,7 +3081,7 @@ func templatesGetTemplateUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates get-template --id "Vel ea sint ut in." --name "Sit omnis molestiae dolor temporibus possimus voluptatem." --apikey-token "Magni quia alias deserunt aperiam distinctio." --session-token "Tempora similique enim quis accusamus distinctio modi." --project-slug-input "In et beatae veniam laboriosam est dolorem."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates get-template --id "Dolores tenetur sint officia." --name "Molestiae et aut aliquam et." --apikey-token "Et aut officiis occaecati quidem possimus corrupti." --session-token "Nihil iste sed voluptas voluptas dolores." --project-slug-input "Temporibus minima."`) } func templatesListTemplatesUsage() { @@ -3061,7 +3104,7 @@ func templatesListTemplatesUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates list-templates --apikey-token "Adipisci ut omnis earum." --session-token "Consequatur eum autem qui aspernatur rerum." --project-slug-input "Optio mollitia adipisci at et eligendi."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates list-templates --apikey-token "Nihil minima assumenda nihil quas." --session-token "Placeat nihil." --project-slug-input "Dolorem molestias."`) } func templatesDeleteTemplateUsage() { @@ -3088,7 +3131,7 @@ func templatesDeleteTemplateUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates delete-template --id "Iste sed voluptas voluptas dolores in." --name "Minima optio facere." --apikey-token "Illo nihil soluta reprehenderit." --session-token "Eaque sunt sequi et." --project-slug-input "Perferendis qui commodi soluta illum dolores."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates delete-template --id "Impedit id dolores." --name "In rerum voluptatem ad ea ut." --apikey-token "Eius et." --session-token "Nesciunt quam." --project-slug-input "Illo sint nostrum."`) } func templatesRenderTemplateByIDUsage() { @@ -3117,9 +3160,9 @@ func templatesRenderTemplateByIDUsage() { fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates render-template-by-id --body '{ "arguments": { - "Eius cumque maiores.": "Qui quaerat tempore eos et libero animi." + "Est quia vel alias aut.": "Sit soluta quisquam." } - }' --id "Omnis veniam similique." --apikey-token "Atque autem." --session-token "Omnis odit amet beatae." --project-slug-input "Id dolores molestiae in."`) + }' --id "Vel qui." --apikey-token "Architecto at saepe quibusdam." --session-token "Voluptate iure ut consectetur quis ullam." --project-slug-input "Enim labore aut eveniet est."`) } func templatesRenderTemplateUsage() { @@ -3146,14 +3189,14 @@ func templatesRenderTemplateUsage() { fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `templates render-template --body '{ "arguments": { - "Alias aut quaerat sit soluta quisquam.": "Vel qui.", - "Architecto at saepe quibusdam.": "Voluptate iure ut consectetur quis ullam.", - "Sapiente odio nesciunt inventore.": "Eveniet repudiandae excepturi delectus est quia." + "Eius a quod architecto.": "Aspernatur corrupti quisquam voluptatem incidunt minus dolorem.", + "Et architecto.": "Minus ea dolorem repudiandae et.", + "Minus aspernatur architecto ex tempore.": "Autem et." }, "engine": "mustache", "kind": "higher_order_tool", - "prompt": "Excepturi perspiciatis." - }' --apikey-token "Aut eveniet est commodi vitae et consequatur." --session-token "Sequi voluptatem omnis." --project-slug-input "Ut libero repellat incidunt odit."`) + "prompt": "Et aliquam nihil vel molestiae cumque tenetur." + }' --apikey-token "Est explicabo." --session-token "Inventore quis." --project-slug-input "Minima minus."`) } // toolsUsage displays the usage of the tools command and its subcommands. @@ -3190,7 +3233,7 @@ func toolsListToolsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `tools list-tools --cursor "Dolorem repudiandae et dolor eius a." --limit 1926360298 --deployment-id "Aut aspernatur." --session-token "Quisquam voluptatem incidunt minus dolorem molestias." --project-slug-input "Aspernatur architecto ex tempore."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `tools list-tools --cursor "Ut sed." --limit 520022500 --deployment-id "Voluptatem reiciendis cupiditate." --session-token "Fuga minus velit id distinctio." --project-slug-input "Fuga eius dicta error in ipsum dolor."`) } // toolsetsUsage displays the usage of the toolsets command and its subcommands. @@ -3232,16 +3275,16 @@ func toolsetsCreateToolsetUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets create-toolset --body '{ - "default_environment_slug": "vtf", - "description": "Mollitia ut quia eveniet.", - "name": "Delectus voluptas ut voluptas sed.", + "default_environment_slug": "h0h", + "description": "Nisi quis pariatur.", + "name": "Deserunt provident nam tempore veritatis occaecati.", "tool_urns": [ - "Voluptatem laudantium delectus.", - "Sed omnis fugit voluptatem reiciendis cupiditate dolores.", - "Minus velit id distinctio quasi fuga eius.", - "Error in ipsum dolor ipsa." + "Expedita eos enim ab voluptate quia et.", + "Incidunt qui ea at dignissimos libero.", + "Voluptatum nihil.", + "Labore officiis quam." ] - }' --session-token "Dolorem quam consequatur adipisci temporibus est." --project-slug-input "Aut autem exercitationem doloribus cupiditate enim dolorem."`) + }' --session-token "Suscipit rem." --project-slug-input "Molestiae sed quia modi quis."`) } func toolsetsListToolsetsUsage() { @@ -3262,7 +3305,7 @@ func toolsetsListToolsetsUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets list-toolsets --session-token "Quia nesciunt et nihil." --project-slug-input "Consequuntur vel."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets list-toolsets --session-token "Impedit est similique." --project-slug-input "Ut vel non nemo rerum sed."`) } func toolsetsUpdateToolsetUsage() { @@ -3288,24 +3331,25 @@ func toolsetsUpdateToolsetUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets update-toolset --body '{ - "custom_domain_id": "Quos ut consequatur illo.", - "default_environment_slug": "czh", - "description": "Eum praesentium consequatur sed similique velit neque.", - "mcp_enabled": true, - "mcp_is_public": true, - "mcp_slug": "qsh", - "name": "Officiis consequatur esse voluptas aperiam accusamus.", + "custom_domain_id": "Qui maxime dolorem sequi.", + "default_environment_slug": "lr4", + "description": "Sapiente enim ut quia.", + "mcp_enabled": false, + "mcp_is_public": false, + "mcp_slug": "tb2", + "name": "Expedita tenetur.", "prompt_template_names": [ - "Rerum temporibus et officiis nihil aut voluptate.", - "Mollitia qui rem iste laudantium quisquam quis." + "Aspernatur quidem doloremque suscipit quos ut.", + "Illo expedita dicta.", + "Tempore at.", + "Aut consectetur dolorem." ], "tool_urns": [ - "Aut voluptate in dolorem aliquam.", - "Quis id laboriosam.", - "Tenetur quis sapiente enim ut quia.", - "Ab architecto." + "Voluptatem quis unde enim sint error.", + "Saepe eius aperiam.", + "Soluta aperiam consequatur quis reprehenderit." ] - }' --slug "9vt" --session-token "Sunt aut consectetur dolorem." --project-slug-input "Excepturi voluptatem quis unde."`) + }' --slug "eey" --session-token "Explicabo aut earum qui odit." --project-slug-input "Blanditiis ea est voluptatum."`) } func toolsetsDeleteToolsetUsage() { @@ -3328,7 +3372,7 @@ func toolsetsDeleteToolsetUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets delete-toolset --slug "p1a" --session-token "Facilis nam distinctio." --project-slug-input "Placeat error et et consequuntur id."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets delete-toolset --slug "7ir" --session-token "Deserunt illo doloribus et voluptate aut." --project-slug-input "Doloribus eaque voluptatem quis fugiat voluptatum quo."`) } func toolsetsGetToolsetUsage() { @@ -3351,7 +3395,7 @@ func toolsetsGetToolsetUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets get-toolset --slug "t24" --session-token "Facere rem omnis enim repellendus cumque ad." --project-slug-input "Aliquid corporis quasi illo aut maxime ab."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets get-toolset --slug "8bg" --session-token "Alias velit tenetur nisi sit praesentium quas." --project-slug-input "Sit quia ullam."`) } func toolsetsCheckMCPSlugAvailabilityUsage() { @@ -3374,7 +3418,7 @@ func toolsetsCheckMCPSlugAvailabilityUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets check-mcp-slug-availability --slug "km2" --session-token "Atque omnis." --project-slug-input "Facere animi dolorum est."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets check-mcp-slug-availability --slug "mjl" --session-token "Cum quis dolores culpa odio." --project-slug-input "Temporibus omnis accusamus expedita ea sapiente reiciendis."`) } func toolsetsCloneToolsetUsage() { @@ -3397,7 +3441,7 @@ func toolsetsCloneToolsetUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets clone-toolset --slug "lav" --session-token "Reiciendis quis eveniet cupiditate non sed rerum." --project-slug-input "Impedit id."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets clone-toolset --slug "fg6" --session-token "Eos fugit atque voluptatem omnis sint voluptatum." --project-slug-input "Architecto non hic consequatur."`) } func toolsetsAddExternalOAuthServerUsage() { @@ -3424,10 +3468,10 @@ func toolsetsAddExternalOAuthServerUsage() { fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets add-externaloauth-server --body '{ "external_oauth_server": { - "metadata": "Qui hic corrupti voluptate accusamus sunt.", - "slug": "kgp" + "metadata": "Pariatur blanditiis tempora molestiae.", + "slug": "fyt" } - }' --slug "381" --session-token "Dolor sunt voluptas harum id ut rerum." --project-slug-input "Error ducimus ut blanditiis rerum sint excepturi."`) + }' --slug "pr8" --session-token "Dolore consequatur et." --project-slug-input "Voluptates ut ipsa aut sed dolore."`) } func toolsetsRemoveOAuthServerUsage() { @@ -3450,7 +3494,7 @@ func toolsetsRemoveOAuthServerUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets removeoauth-server --slug "55n" --session-token "Atque qui possimus beatae quaerat numquam." --project-slug-input "Iste exercitationem saepe soluta."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `toolsets removeoauth-server --slug "fck" --session-token "Impedit saepe et occaecati velit est." --project-slug-input "Sequi ea et."`) } // usageUsage displays the usage of the usage command and its subcommands. @@ -3484,7 +3528,7 @@ func usageGetPeriodUsageUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `usage get-period-usage --session-token "Aut ipsa fugiat quis voluptatum quisquam sed." --project-slug-input "Unde quia incidunt eligendi adipisci vitae."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `usage get-period-usage --session-token "Et blanditiis sit provident perferendis ut." --project-slug-input "Blanditiis veniam in."`) } func usageGetUsageTiersUsage() { @@ -3522,7 +3566,7 @@ func usageCreateCustomerSessionUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `usage create-customer-session --session-token "Autem quia voluptatem dolor quod est est." --project-slug-input "Aut ab ut minima at dolor vel."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `usage create-customer-session --session-token "Quasi minus." --project-slug-input "Autem nostrum possimus omnis maiores quae nam."`) } func usageCreateCheckoutUsage() { @@ -3543,7 +3587,7 @@ func usageCreateCheckoutUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `usage create-checkout --session-token "Reiciendis soluta pariatur." --project-slug-input "Officiis quisquam aliquam tempora deleniti."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `usage create-checkout --session-token "Praesentium quis itaque distinctio." --project-slug-input "Voluptatem a."`) } // variationsUsage displays the usage of the variations command and its @@ -3582,19 +3626,18 @@ func variationsUpsertGlobalUsage() { fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `variations upsert-global --body '{ - "confirm": "session", - "confirm_prompt": "Aliquam voluptas necessitatibus dolorum magnam.", - "description": "Sed optio.", - "name": "Consequatur dolor non aperiam.", - "src_tool_name": "Numquam eligendi atque ipsum ipsum.", - "summarizer": "Rerum sunt culpa.", - "summary": "Voluptas at consectetur neque voluptatem.", + "confirm": "never", + "confirm_prompt": "Non aperiam qui voluptas.", + "description": "Quo laudantium natus.", + "name": "Consectetur neque voluptatem dolores.", + "src_tool_name": "Voluptas necessitatibus dolorum magnam optio.", + "summarizer": "Sunt culpa aperiam veniam in sapiente.", + "summary": "Optio magnam eos enim.", "tags": [ - "Enim et quo.", - "Natus eum saepe dolore ut reprehenderit.", - "Alias non quod." + "Dolore ut reprehenderit veniam alias.", + "Quod quo." ] - }' --session-token "Veniam in sapiente laboriosam." --apikey-token "Porro nam dolor." --project-slug-input "Quis veritatis."`) + }' --session-token "Aut porro nam dolor nesciunt." --apikey-token "Veritatis velit sint dolores." --project-slug-input "Beatae accusantium quaerat sint enim deleniti."`) } func variationsDeleteGlobalUsage() { @@ -3619,7 +3662,7 @@ func variationsDeleteGlobalUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `variations delete-global --variation-id "Quo voluptates." --session-token "Laboriosam doloremque non et." --apikey-token "Reiciendis voluptas ut laboriosam quisquam." --project-slug-input "Modi facere ipsa repellat veritatis."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `variations delete-global --variation-id "Ut laboriosam quisquam." --session-token "Modi facere ipsa repellat veritatis." --apikey-token "Quia quas voluptate eius temporibus cumque." --project-slug-input "Ullam sed sit est nesciunt tenetur."`) } func variationsListGlobalUsage() { @@ -3642,5 +3685,5 @@ func variationsListGlobalUsage() { // Example block: pass example as parameter to avoid format parsing of % characters fmt.Fprintln(os.Stderr) fmt.Fprintln(os.Stderr, "Example:") - fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `variations list-global --session-token "Deserunt non officia." --apikey-token "Molestiae totam." --project-slug-input "Ut optio nam non distinctio quo."`) + fmt.Fprintf(os.Stderr, " %s %s\n", os.Args[0], `variations list-global --session-token "Non distinctio quo quas quibusdam." --apikey-token "Est dicta distinctio ipsum ut voluptas quidem." --project-slug-input "Voluptatem voluptatum quis dolores sed molestias."`) } diff --git a/server/gen/http/deployments/client/cli.go b/server/gen/http/deployments/client/cli.go index b06622c00..d90ed56f6 100644 --- a/server/gen/http/deployments/client/cli.go +++ b/server/gen/http/deployments/client/cli.go @@ -115,7 +115,7 @@ func BuildCreateDeploymentPayload(deploymentsCreateDeploymentBody string, deploy { err = json.Unmarshal([]byte(deploymentsCreateDeploymentBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"external_id\": \"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6\",\n \"external_url\": \"Quidem odit officia velit occaecati autem est.\",\n \"functions\": [\n {\n \"asset_id\": \"Sed itaque ad.\",\n \"name\": \"Dolores doloremque nobis.\",\n \"runtime\": \"Laboriosam vel omnis.\",\n \"slug\": \"oo3\"\n },\n {\n \"asset_id\": \"Sed itaque ad.\",\n \"name\": \"Dolores doloremque nobis.\",\n \"runtime\": \"Laboriosam vel omnis.\",\n \"slug\": \"oo3\"\n },\n {\n \"asset_id\": \"Sed itaque ad.\",\n \"name\": \"Dolores doloremque nobis.\",\n \"runtime\": \"Laboriosam vel omnis.\",\n \"slug\": \"oo3\"\n }\n ],\n \"github_pr\": \"1234\",\n \"github_repo\": \"speakeasyapi/gram\",\n \"github_sha\": \"f33e693e9e12552043bc0ec5c37f1b8a9e076161\",\n \"openapiv3_assets\": [\n {\n \"asset_id\": \"Veniam explicabo et est aut cumque alias.\",\n \"name\": \"Et blanditiis et.\",\n \"slug\": \"cvv\"\n },\n {\n \"asset_id\": \"Veniam explicabo et est aut cumque alias.\",\n \"name\": \"Et blanditiis et.\",\n \"slug\": \"cvv\"\n }\n ],\n \"packages\": [\n {\n \"name\": \"Debitis suscipit ipsa quo dolorem enim necessitatibus.\",\n \"version\": \"Recusandae recusandae.\"\n },\n {\n \"name\": \"Debitis suscipit ipsa quo dolorem enim necessitatibus.\",\n \"version\": \"Recusandae recusandae.\"\n },\n {\n \"name\": \"Debitis suscipit ipsa quo dolorem enim necessitatibus.\",\n \"version\": \"Recusandae recusandae.\"\n }\n ]\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"external_id\": \"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6\",\n \"external_url\": \"Omnis voluptatem sed itaque ad eos.\",\n \"functions\": [\n {\n \"asset_id\": \"Quo dolorem enim necessitatibus ducimus recusandae.\",\n \"name\": \"Odio omnis praesentium.\",\n \"runtime\": \"Asperiores necessitatibus accusamus repudiandae iste non.\",\n \"slug\": \"hmj\"\n },\n {\n \"asset_id\": \"Quo dolorem enim necessitatibus ducimus recusandae.\",\n \"name\": \"Odio omnis praesentium.\",\n \"runtime\": \"Asperiores necessitatibus accusamus repudiandae iste non.\",\n \"slug\": \"hmj\"\n },\n {\n \"asset_id\": \"Quo dolorem enim necessitatibus ducimus recusandae.\",\n \"name\": \"Odio omnis praesentium.\",\n \"runtime\": \"Asperiores necessitatibus accusamus repudiandae iste non.\",\n \"slug\": \"hmj\"\n },\n {\n \"asset_id\": \"Quo dolorem enim necessitatibus ducimus recusandae.\",\n \"name\": \"Odio omnis praesentium.\",\n \"runtime\": \"Asperiores necessitatibus accusamus repudiandae iste non.\",\n \"slug\": \"hmj\"\n }\n ],\n \"github_pr\": \"1234\",\n \"github_repo\": \"speakeasyapi/gram\",\n \"github_sha\": \"f33e693e9e12552043bc0ec5c37f1b8a9e076161\",\n \"openapiv3_assets\": [\n {\n \"asset_id\": \"Nobis blanditiis omnis.\",\n \"name\": \"Cumque qui laboriosam vel.\",\n \"slug\": \"ycy\"\n },\n {\n \"asset_id\": \"Nobis blanditiis omnis.\",\n \"name\": \"Cumque qui laboriosam vel.\",\n \"slug\": \"ycy\"\n },\n {\n \"asset_id\": \"Nobis blanditiis omnis.\",\n \"name\": \"Cumque qui laboriosam vel.\",\n \"slug\": \"ycy\"\n }\n ],\n \"packages\": [\n {\n \"name\": \"Incidunt natus exercitationem est.\",\n \"version\": \"Non odit laudantium eligendi quia sed.\"\n },\n {\n \"name\": \"Incidunt natus exercitationem est.\",\n \"version\": \"Non odit laudantium eligendi quia sed.\"\n },\n {\n \"name\": \"Incidunt natus exercitationem est.\",\n \"version\": \"Non odit laudantium eligendi quia sed.\"\n },\n {\n \"name\": \"Incidunt natus exercitationem est.\",\n \"version\": \"Non odit laudantium eligendi quia sed.\"\n }\n ]\n }'") } for _, e := range body.Openapiv3Assets { if e != nil { @@ -198,7 +198,7 @@ func BuildEvolvePayload(deploymentsEvolveBody string, deploymentsEvolveApikeyTok { err = json.Unmarshal([]byte(deploymentsEvolveBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"deployment_id\": \"Soluta aperiam sit quaerat dolorem.\",\n \"exclude_functions\": [\n \"Sapiente illum deleniti laudantium ipsum non.\",\n \"Molestiae veniam at cumque.\"\n ],\n \"exclude_openapiv3_assets\": [\n \"Quibusdam quia ea consequuntur.\",\n \"Non quaerat consequuntur quam exercitationem molestiae maiores.\"\n ],\n \"exclude_packages\": [\n \"Cum vel aliquid rerum at repellendus est.\",\n \"Accusantium est dolor sit.\",\n \"Consequuntur error suscipit optio sunt eum.\"\n ],\n \"upsert_functions\": [\n {\n \"asset_id\": \"Sed itaque ad.\",\n \"name\": \"Dolores doloremque nobis.\",\n \"runtime\": \"Laboriosam vel omnis.\",\n \"slug\": \"oo3\"\n },\n {\n \"asset_id\": \"Sed itaque ad.\",\n \"name\": \"Dolores doloremque nobis.\",\n \"runtime\": \"Laboriosam vel omnis.\",\n \"slug\": \"oo3\"\n }\n ],\n \"upsert_openapiv3_assets\": [\n {\n \"asset_id\": \"Veniam explicabo et est aut cumque alias.\",\n \"name\": \"Et blanditiis et.\",\n \"slug\": \"cvv\"\n },\n {\n \"asset_id\": \"Veniam explicabo et est aut cumque alias.\",\n \"name\": \"Et blanditiis et.\",\n \"slug\": \"cvv\"\n }\n ],\n \"upsert_packages\": [\n {\n \"name\": \"Qui voluptatem sint.\",\n \"version\": \"Quisquam minus dolore consequuntur eum necessitatibus.\"\n },\n {\n \"name\": \"Qui voluptatem sint.\",\n \"version\": \"Quisquam minus dolore consequuntur eum necessitatibus.\"\n },\n {\n \"name\": \"Qui voluptatem sint.\",\n \"version\": \"Quisquam minus dolore consequuntur eum necessitatibus.\"\n }\n ]\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"deployment_id\": \"Necessitatibus non quaerat.\",\n \"exclude_functions\": [\n \"Quam deleniti occaecati.\",\n \"Autem non dolor minima.\",\n \"Enim aliquam quia debitis odio ex.\"\n ],\n \"exclude_openapiv3_assets\": [\n \"Dolor sit voluptatibus.\",\n \"Error suscipit optio.\",\n \"Eum corporis harum.\"\n ],\n \"exclude_packages\": [\n \"Deleniti laudantium ipsum non.\",\n \"Molestiae veniam at cumque.\",\n \"Inventore reprehenderit.\",\n \"Eos inventore aliquam libero libero sed ad.\"\n ],\n \"upsert_functions\": [\n {\n \"asset_id\": \"Quo dolorem enim necessitatibus ducimus recusandae.\",\n \"name\": \"Odio omnis praesentium.\",\n \"runtime\": \"Asperiores necessitatibus accusamus repudiandae iste non.\",\n \"slug\": \"hmj\"\n },\n {\n \"asset_id\": \"Quo dolorem enim necessitatibus ducimus recusandae.\",\n \"name\": \"Odio omnis praesentium.\",\n \"runtime\": \"Asperiores necessitatibus accusamus repudiandae iste non.\",\n \"slug\": \"hmj\"\n }\n ],\n \"upsert_openapiv3_assets\": [\n {\n \"asset_id\": \"Nobis blanditiis omnis.\",\n \"name\": \"Cumque qui laboriosam vel.\",\n \"slug\": \"ycy\"\n },\n {\n \"asset_id\": \"Nobis blanditiis omnis.\",\n \"name\": \"Cumque qui laboriosam vel.\",\n \"slug\": \"ycy\"\n }\n ],\n \"upsert_packages\": [\n {\n \"name\": \"Molestiae maiores voluptatem.\",\n \"version\": \"Cum vel aliquid rerum at repellendus est.\"\n },\n {\n \"name\": \"Molestiae maiores voluptatem.\",\n \"version\": \"Cum vel aliquid rerum at repellendus est.\"\n },\n {\n \"name\": \"Molestiae maiores voluptatem.\",\n \"version\": \"Cum vel aliquid rerum at repellendus est.\"\n }\n ]\n }'") } } var apikeyToken *string @@ -273,7 +273,7 @@ func BuildRedeployPayload(deploymentsRedeployBody string, deploymentsRedeployApi { err = json.Unmarshal([]byte(deploymentsRedeployBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"deployment_id\": \"Hic rerum laborum.\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"deployment_id\": \"Omnis iure eaque qui qui excepturi.\"\n }'") } } var apikeyToken *string diff --git a/server/gen/http/domains/client/cli.go b/server/gen/http/domains/client/cli.go index 5f12f3944..8b04979e9 100644 --- a/server/gen/http/domains/client/cli.go +++ b/server/gen/http/domains/client/cli.go @@ -44,7 +44,7 @@ func BuildCreateDomainPayload(domainsCreateDomainBody string, domainsCreateDomai { err = json.Unmarshal([]byte(domainsCreateDomainBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"domain\": \"Id ullam.\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"domain\": \"Repudiandae placeat molestiae qui voluptatem sapiente.\"\n }'") } } var sessionToken *string diff --git a/server/gen/http/environments/client/cli.go b/server/gen/http/environments/client/cli.go index 8060d635e..39b7e11e6 100644 --- a/server/gen/http/environments/client/cli.go +++ b/server/gen/http/environments/client/cli.go @@ -25,7 +25,7 @@ func BuildCreateEnvironmentPayload(environmentsCreateEnvironmentBody string, env { err = json.Unmarshal([]byte(environmentsCreateEnvironmentBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"description\": \"Dignissimos iste eos asperiores officia molestiae.\",\n \"entries\": [\n {\n \"name\": \"Consequatur cum neque.\",\n \"value\": \"Architecto nemo quasi qui libero sint.\"\n },\n {\n \"name\": \"Consequatur cum neque.\",\n \"value\": \"Architecto nemo quasi qui libero sint.\"\n },\n {\n \"name\": \"Consequatur cum neque.\",\n \"value\": \"Architecto nemo quasi qui libero sint.\"\n },\n {\n \"name\": \"Consequatur cum neque.\",\n \"value\": \"Architecto nemo quasi qui libero sint.\"\n }\n ],\n \"name\": \"Et minus fugiat.\",\n \"organization_id\": \"Cum quo aspernatur itaque illo sint iusto.\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"description\": \"Cumque molestiae saepe et.\",\n \"entries\": [\n {\n \"name\": \"Accusamus illum aut quo voluptas.\",\n \"value\": \"Culpa nobis fuga quibusdam maxime eum natus.\"\n },\n {\n \"name\": \"Accusamus illum aut quo voluptas.\",\n \"value\": \"Culpa nobis fuga quibusdam maxime eum natus.\"\n }\n ],\n \"name\": \"Alias labore.\",\n \"organization_id\": \"Qui libero sint aut.\"\n }'") } if body.Entries == nil { err = goa.MergeErrors(err, goa.MissingFieldError("entries", "body")) @@ -95,7 +95,7 @@ func BuildUpdateEnvironmentPayload(environmentsUpdateEnvironmentBody string, env { err = json.Unmarshal([]byte(environmentsUpdateEnvironmentBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"description\": \"Sit asperiores deserunt ipsa ab.\",\n \"entries_to_remove\": [\n \"Ut sint.\",\n \"Vero vitae est.\",\n \"Ut explicabo sit.\"\n ],\n \"entries_to_update\": [\n {\n \"name\": \"Consequatur cum neque.\",\n \"value\": \"Architecto nemo quasi qui libero sint.\"\n },\n {\n \"name\": \"Consequatur cum neque.\",\n \"value\": \"Architecto nemo quasi qui libero sint.\"\n }\n ],\n \"name\": \"Voluptate nihil amet nemo.\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"description\": \"Tempora necessitatibus.\",\n \"entries_to_remove\": [\n \"Aliquam est dignissimos maxime aut ipsam qui.\",\n \"Dolorem libero quaerat.\"\n ],\n \"entries_to_update\": [\n {\n \"name\": \"Accusamus illum aut quo voluptas.\",\n \"value\": \"Culpa nobis fuga quibusdam maxime eum natus.\"\n },\n {\n \"name\": \"Accusamus illum aut quo voluptas.\",\n \"value\": \"Culpa nobis fuga quibusdam maxime eum natus.\"\n },\n {\n \"name\": \"Accusamus illum aut quo voluptas.\",\n \"value\": \"Culpa nobis fuga quibusdam maxime eum natus.\"\n },\n {\n \"name\": \"Accusamus illum aut quo voluptas.\",\n \"value\": \"Culpa nobis fuga quibusdam maxime eum natus.\"\n }\n ],\n \"name\": \"Sed sint voluptatibus neque quaerat.\"\n }'") } if body.EntriesToUpdate == nil { err = goa.MergeErrors(err, goa.MissingFieldError("entries_to_update", "body")) diff --git a/server/gen/http/integrations/client/cli.go b/server/gen/http/integrations/client/cli.go index b9a821a5e..343261911 100644 --- a/server/gen/http/integrations/client/cli.go +++ b/server/gen/http/integrations/client/cli.go @@ -61,7 +61,7 @@ func BuildListPayload(integrationsListKeywords string, integrationsListSessionTo if integrationsListKeywords != "" { err = json.Unmarshal([]byte(integrationsListKeywords), &keywords) if err != nil { - return nil, fmt.Errorf("invalid JSON for keywords, \nerror: %s, \nexample of valid JSON:\n%s", err, "'[\n \"bq2\",\n \"ebk\",\n \"4qw\"\n ]'") + return nil, fmt.Errorf("invalid JSON for keywords, \nerror: %s, \nexample of valid JSON:\n%s", err, "'[\n \"q8o\",\n \"aeu\",\n \"orr\"\n ]'") } for _, e := range keywords { if utf8.RuneCountInString(e) > 20 { diff --git a/server/gen/http/keys/client/cli.go b/server/gen/http/keys/client/cli.go index 105eb25f2..1d230bd88 100644 --- a/server/gen/http/keys/client/cli.go +++ b/server/gen/http/keys/client/cli.go @@ -23,7 +23,7 @@ func BuildCreateKeyPayload(keysCreateKeyBody string, keysCreateKeySessionToken s { err = json.Unmarshal([]byte(keysCreateKeyBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"name\": \"Nihil repellendus velit dicta ex.\",\n \"scopes\": [\n \"Ut tenetur deserunt.\",\n \"Vero odit blanditiis aut temporibus soluta.\",\n \"Quod vitae quod fugiat sit natus.\"\n ]\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"name\": \"Et ea corrupti sunt sed deserunt.\",\n \"scopes\": [\n \"Cum in dolore laudantium itaque.\",\n \"Voluptates qui magnam ullam consequatur.\",\n \"Ad culpa fugit.\"\n ]\n }'") } if body.Scopes == nil { err = goa.MergeErrors(err, goa.MissingFieldError("scopes", "body")) diff --git a/server/gen/http/mcp_metadata/client/cli.go b/server/gen/http/mcp_metadata/client/cli.go index c7bb6ae14..b5787c329 100644 --- a/server/gen/http/mcp_metadata/client/cli.go +++ b/server/gen/http/mcp_metadata/client/cli.go @@ -60,7 +60,7 @@ func BuildSetMcpMetadataPayload(mcpMetadataSetMcpMetadataBody string, mcpMetadat { err = json.Unmarshal([]byte(mcpMetadataSetMcpMetadataBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"external_documentation_url\": \"Voluptas voluptas.\",\n \"logo_asset_id\": \"Temporibus autem.\",\n \"toolset_slug\": \"tfb\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"external_documentation_url\": \"Modi ut voluptatem harum iste.\",\n \"logo_asset_id\": \"In officia sequi.\",\n \"toolset_slug\": \"xy3\"\n }'") } err = goa.MergeErrors(err, goa.ValidatePattern("body.toolset_slug", body.ToolsetSlug, "^[a-z0-9_-]{1,128}$")) if utf8.RuneCountInString(body.ToolsetSlug) > 40 { diff --git a/server/gen/http/openapi.json b/server/gen/http/openapi.json index 08c8a5a59..7c9770517 100644 --- a/server/gen/http/openapi.json +++ b/server/gen/http/openapi.json @@ -1 +1 @@ -{"swagger":"2.0","info":{"title":"Gram API Description","description":"Gram is the tools platform for AI agents","version":"0.0.1"},"host":"localhost:80","consumes":["application/json","application/xml","application/gob"],"produces":["application/json","application/xml","application/gob"],"paths":{"/rpc/assets.list":{"get":{"description":"List all assets for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"assets#listAssets","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListAssetsResult","required":["assets"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsListAssetsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsListAssetsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsListAssetsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsListAssetsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsListAssetsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsListAssetsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsListAssetsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsListAssetsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsListAssetsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listAssets assets","tags":["assets"],"x-speakeasy-name-override":"listAssets","x-speakeasy-react-hook":{"name":"ListAssets"}}},"/rpc/assets.serveImage":{"get":{"description":"Serve an image from Gram.","operationId":"assets#serveImage","parameters":[{"description":"The ID of the asset to serve","in":"query","name":"id","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","headers":{"Content-Length":{"type":"int64"},"Content-Type":{"type":"string"},"Last-Modified":{"type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsServeImageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsServeImageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsServeImageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsServeImageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsServeImageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsServeImageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsServeImageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsServeImageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsServeImageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null},{"session_header_Gram-Session":null}],"summary":"serveImage assets","tags":["assets"],"x-speakeasy-name-override":"serveImage","x-speakeasy-react-hook":{"name":"serveImage"}}},"/rpc/assets.serveOpenAPIv3":{"get":{"description":"Serve an OpenAPIv3 asset from Gram.","operationId":"assets#serveOpenAPIv3","parameters":[{"description":"The ID of the asset to serve","in":"query","name":"id","required":true,"type":"string"},{"description":"The procect ID that the asset belongs to","in":"query","name":"project_id","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","headers":{"Content-Length":{"type":"int64"},"Content-Type":{"type":"string"},"Last-Modified":{"type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3BadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3UnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3ForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3NotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3ConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3UnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3InvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3UnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3GatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null},{"session_header_Gram-Session":null}],"summary":"serveOpenAPIv3 assets","tags":["assets"],"x-speakeasy-name-override":"serveOpenAPIv3","x-speakeasy-react-hook":{"name":"serveOpenAPIv3"}}},"/rpc/assets.uploadFunctions":{"post":{"description":"Upload functions to Gram.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"assets#uploadFunctions","parameters":[{"in":"header","name":"Content-Type","required":true,"type":"string"},{"format":"int64","in":"header","name":"Content-Length","required":true,"type":"integer"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UploadFunctionsResult","required":["asset"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"uploadFunctions assets","tags":["assets"],"x-speakeasy-name-override":"uploadFunctions","x-speakeasy-react-hook":{"name":"UploadFunctions"}}},"/rpc/assets.uploadImage":{"post":{"description":"Upload an image to Gram.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"assets#uploadImage","parameters":[{"in":"header","name":"Content-Type","required":true,"type":"string"},{"format":"int64","in":"header","name":"Content-Length","required":true,"type":"integer"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UploadImageResult","required":["asset"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsUploadImageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsUploadImageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsUploadImageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsUploadImageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsUploadImageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsUploadImageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsUploadImageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsUploadImageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsUploadImageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"uploadImage assets","tags":["assets"],"x-speakeasy-name-override":"uploadImage","x-speakeasy-react-hook":{"name":"UploadImage"}}},"/rpc/assets.uploadOpenAPIv3":{"post":{"description":"Upload an OpenAPI v3 document to Gram.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"assets#uploadOpenAPIv3","parameters":[{"in":"header","name":"Content-Type","required":true,"type":"string"},{"format":"int64","in":"header","name":"Content-Length","required":true,"type":"integer"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UploadOpenAPIv3Result","required":["asset"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3BadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3UnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3ForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3NotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3ConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3UnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3InvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3UnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3GatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"uploadOpenAPIv3 assets","tags":["assets"],"x-speakeasy-name-override":"uploadOpenAPIv3","x-speakeasy-react-hook":{"name":"UploadOpenAPIv3"}}},"/rpc/auth.callback":{"get":{"description":"Handles the authentication callback.","operationId":"auth#callback","parameters":[{"description":"The auth code for authentication from the speakeasy system","in":"query","name":"code","required":true,"type":"string"}],"responses":{"307":{"description":"Temporary Redirect response.","headers":{"Gram-Session":{"description":"Session header","type":"string"},"Location":{"description":"The URL to redirect to after authentication","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthCallbackBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthCallbackUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthCallbackForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthCallbackNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthCallbackConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthCallbackUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthCallbackInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthCallbackUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthCallbackGatewayErrorResponseBody"}}},"schemes":["http"],"summary":"callback auth","tags":["auth"],"x-speakeasy-name-override":"callback","x-speakeasy-react-hook":{"disabled":true}}},"/rpc/auth.info":{"get":{"description":"Provides information about the current authentication status.","operationId":"auth#info","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","headers":{"Gram-Session":{"description":"Session header","type":"string"}},"schema":{"$ref":"#/definitions/AuthInfoResponseBody","required":["user_id","user_email","is_admin","active_organization_id","organizations","gram_account_type"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthInfoBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthInfoUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthInfoForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthInfoNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthInfoConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthInfoUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthInfoInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthInfoUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthInfoGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"info auth","tags":["auth"],"x-speakeasy-name-override":"info","x-speakeasy-react-hook":{"name":"SessionInfo"}}},"/rpc/auth.login":{"get":{"description":"Proxies to auth login through speakeasy oidc.","operationId":"auth#login","responses":{"307":{"description":"Temporary Redirect response.","headers":{"Location":{"description":"The URL to redirect to after authentication","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthLoginBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthLoginUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthLoginForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthLoginNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthLoginConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthLoginUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthLoginInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthLoginUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthLoginGatewayErrorResponseBody"}}},"schemes":["http"],"summary":"login auth","tags":["auth"],"x-speakeasy-name-override":"login","x-speakeasy-react-hook":{"disabled":true}}},"/rpc/auth.logout":{"post":{"description":"Logs out the current user by clearing their session.","operationId":"auth#logout","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthLogoutBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthLogoutUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthLogoutForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthLogoutNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthLogoutConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthLogoutUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthLogoutInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthLogoutUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthLogoutGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"logout auth","tags":["auth"],"x-speakeasy-name-override":"logout","x-speakeasy-react-hook":{"name":"Logout"}}},"/rpc/auth.register":{"post":{"description":"Register a new org for a user with their session information.","operationId":"auth#register","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"in":"body","name":"RegisterRequestBody","required":true,"schema":{"$ref":"#/definitions/AuthRegisterRequestBody","required":["org_name"]}}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthRegisterBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthRegisterUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthRegisterForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthRegisterNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthRegisterConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthRegisterUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthRegisterInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthRegisterUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthRegisterGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"register auth","tags":["auth"],"x-speakeasy-name-override":"register","x-speakeasy-react-hook":{"name":"Register"}}},"/rpc/auth.switchScopes":{"post":{"description":"Switches the authentication scope to a different organization.","operationId":"auth#switchScopes","parameters":[{"description":"The organization slug to switch scopes","in":"query","name":"organization_id","required":false,"type":"string"},{"description":"The project id to switch scopes too","in":"query","name":"project_id","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","headers":{"Gram-Session":{"description":"Session header","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthSwitchScopesBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthSwitchScopesUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthSwitchScopesForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthSwitchScopesNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthSwitchScopesConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthSwitchScopesUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthSwitchScopesInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthSwitchScopesUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthSwitchScopesGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"switchScopes auth","tags":["auth"],"x-speakeasy-name-override":"switchScopes","x-speakeasy-react-hook":{"name":"SwitchScopes"}}},"/rpc/chat.creditUsage":{"get":{"description":"Load a chat by its ID","operationId":"chat#creditUsage","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ChatCreditUsageResponseBody","required":["credits_used","monthly_credits"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ChatCreditUsageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ChatCreditUsageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ChatCreditUsageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ChatCreditUsageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ChatCreditUsageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ChatCreditUsageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ChatCreditUsageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ChatCreditUsageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ChatCreditUsageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"creditUsage chat","tags":["chat"],"x-speakeasy-name-override":"creditUsage","x-speakeasy-react-hook":{"name":"GetCreditUsage"}}},"/rpc/chat.list":{"get":{"description":"List all chats for a project","operationId":"chat#listChats","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListChatsResult","required":["chats"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ChatListChatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ChatListChatsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ChatListChatsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ChatListChatsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ChatListChatsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ChatListChatsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ChatListChatsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ChatListChatsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ChatListChatsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listChats chat","tags":["chat"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListChats"}}},"/rpc/chat.load":{"get":{"description":"Load a chat by its ID","operationId":"chat#loadChat","parameters":[{"description":"The ID of the chat","in":"query","name":"id","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Chat","required":["messages","id","title","user_id","num_messages","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ChatLoadChatBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ChatLoadChatUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ChatLoadChatForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ChatLoadChatNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ChatLoadChatConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ChatLoadChatUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ChatLoadChatInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ChatLoadChatUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ChatLoadChatGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"loadChat chat","tags":["chat"],"x-speakeasy-name-override":"load","x-speakeasy-react-hook":{"name":"LoadChat"}}},"/rpc/deployments.active":{"get":{"description":"Get the active deployment for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#getActiveDeployment","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetActiveDeploymentResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getActiveDeployment deployments","tags":["deployments"],"x-speakeasy-name-override":"active","x-speakeasy-react-hook":{"name":"ActiveDeployment"}}},"/rpc/deployments.create":{"post":{"description":"Create a deployment to load tool definitions.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#createDeployment","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"A unique identifier that will mitigate against duplicate deployments.","in":"header","name":"Idempotency-Key","required":true,"type":"string"},{"in":"body","name":"CreateDeploymentRequestBody","required":true,"schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentRequestBody"}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CreateDeploymentResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createDeployment deployments","tags":["deployments"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateDeployment"}}},"/rpc/deployments.evolve":{"post":{"description":"Create a new deployment with additional or updated tool sources.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#evolve","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"EvolveRequestBody","required":true,"schema":{"$ref":"#/definitions/DeploymentsEvolveRequestBody"}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/EvolveResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsEvolveBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsEvolveUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsEvolveForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsEvolveNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsEvolveConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsEvolveUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsEvolveInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsEvolveUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsEvolveGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"evolve deployments","tags":["deployments"],"x-speakeasy-name-override":"evolveDeployment","x-speakeasy-react-hook":{"name":"EvolveDeployment"}}},"/rpc/deployments.get":{"get":{"description":"Get a deployment by its ID.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#getDeployment","parameters":[{"description":"The ID of the deployment","in":"query","name":"id","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetDeploymentResult","required":["id","created_at","organization_id","project_id","user_id","openapiv3_assets","status","packages","openapiv3_tool_count","functions_tool_count"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getDeployment deployments","tags":["deployments"],"x-speakeasy-name-override":"getById","x-speakeasy-react-hook":{"name":"Deployment"}}},"/rpc/deployments.latest":{"get":{"description":"Get the latest deployment for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#getLatestDeployment","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetLatestDeploymentResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getLatestDeployment deployments","tags":["deployments"],"x-speakeasy-name-override":"latest","x-speakeasy-react-hook":{"name":"LatestDeployment"}}},"/rpc/deployments.list":{"get":{"description":"List all deployments in descending order of creation.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#listDeployments","parameters":[{"description":"The cursor to fetch results from","in":"query","name":"cursor","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListDeploymentResult","required":["items"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listDeployments deployments","tags":["deployments"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListDeployments"}}},"/rpc/deployments.logs":{"get":{"description":"Get logs for a deployment.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#getDeploymentLogs","parameters":[{"description":"The ID of the deployment","in":"query","name":"deployment_id","required":true,"type":"string"},{"description":"The cursor to fetch results from","in":"query","name":"cursor","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetDeploymentLogsResult","required":["events","status"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getDeploymentLogs deployments","tags":["deployments"],"x-speakeasy-name-override":"logs","x-speakeasy-react-hook":{"name":"DeploymentLogs"}}},"/rpc/deployments.redeploy":{"post":{"description":"Redeploys an existing deployment.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#redeploy","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"RedeployRequestBody","required":true,"schema":{"$ref":"#/definitions/DeploymentsRedeployRequestBody","required":["deployment_id"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/RedeployResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsRedeployBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsRedeployUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsRedeployForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsRedeployNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsRedeployConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsRedeployUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsRedeployInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsRedeployUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsRedeployGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"redeploy deployments","tags":["deployments"],"x-speakeasy-name-override":"redeployDeployment","x-speakeasy-react-hook":{"name":"RedeployDeployment"}}},"/rpc/domain.delete":{"delete":{"description":"Delete a custom domain","operationId":"domains#deleteDomain","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"deleteDomain domains","tags":["domains"],"x-speakeasy-name-override":"deleteDomain","x-speakeasy-react-hook":{"name":"deleteDomain"}}},"/rpc/domain.get":{"get":{"description":"Get the custom domain for a project","operationId":"domains#getDomain","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CustomDomain","required":["id","organization_id","domain","verified","activated","created_at","updated_at","is_updating"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DomainsGetDomainBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DomainsGetDomainUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DomainsGetDomainForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DomainsGetDomainNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DomainsGetDomainConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DomainsGetDomainUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DomainsGetDomainInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DomainsGetDomainUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DomainsGetDomainGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getDomain domains","tags":["domains"],"x-speakeasy-name-override":"getDomain","x-speakeasy-react-hook":{"name":"getDomain"}}},"/rpc/domain.register":{"post":{"description":"Create a custom domain for a organization","operationId":"domains#createDomain","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreateDomainRequestBody","required":true,"schema":{"$ref":"#/definitions/DomainsCreateDomainRequestBody","required":["domain"]}}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DomainsCreateDomainBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DomainsCreateDomainUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DomainsCreateDomainForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DomainsCreateDomainNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DomainsCreateDomainConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DomainsCreateDomainUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DomainsCreateDomainInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DomainsCreateDomainUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DomainsCreateDomainGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createDomain domains","tags":["domains"],"x-speakeasy-name-override":"registerDomain","x-speakeasy-react-hook":{"name":"registerDomain"}}},"/rpc/environments.create":{"post":{"description":"Create a new environment","operationId":"environments#createEnvironment","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreateEnvironmentRequestBody","required":true,"schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentRequestBody","required":["organization_id","name","entries"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Environment","required":["id","organization_id","project_id","name","slug","entries","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createEnvironment environments","tags":["environments"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateEnvironment"}}},"/rpc/environments.delete":{"delete":{"description":"Delete an environment","operationId":"environments#deleteEnvironment","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"deleteEnvironment environments","tags":["environments"],"x-speakeasy-name-override":"deleteBySlug","x-speakeasy-react-hook":{"name":"DeleteEnvironment"}}},"/rpc/environments.list":{"get":{"description":"List all environments for an organization","operationId":"environments#listEnvironments","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListEnvironmentsResult","required":["environments"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listEnvironments environments","tags":["environments"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListEnvironments"}}},"/rpc/environments.update":{"post":{"description":"Update an environment","operationId":"environments#updateEnvironment","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdateEnvironmentRequestBody","required":true,"schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentRequestBody","required":["entries_to_update","entries_to_remove"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Environment","required":["id","organization_id","project_id","name","slug","entries","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"updateEnvironment environments","tags":["environments"],"x-speakeasy-name-override":"updateBySlug","x-speakeasy-react-hook":{"name":"UpdateEnvironment"}}},"/rpc/instances.get":{"get":{"description":"Load all relevant data for an instance of a toolset and environment\n\n**Required security scopes for apikey**:\n * `consumer`\n\n**Required security scopes for project_slug**:\n * `consumer`","operationId":"instances#getInstance","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"toolset_slug","required":true,"type":"string"},{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"environment_slug","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetInstanceResult","required":["name","tools","environment"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/InstancesGetInstanceBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/InstancesGetInstanceUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/InstancesGetInstanceForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/InstancesGetInstanceNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/InstancesGetInstanceConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/InstancesGetInstanceUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/InstancesGetInstanceInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/InstancesGetInstanceUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/InstancesGetInstanceGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"getInstance instances","tags":["instances"],"x-speakeasy-name-override":"getBySlug","x-speakeasy-react-hook":{"name":"Instance"}}},"/rpc/integrations.get":{"get":{"tags":["integrations"],"summary":"get integrations","description":"Get a third-party integration by ID or name.","operationId":"integrations#get","parameters":[{"name":"id","in":"query","description":"The ID of the integration to get (refers to a package id).","required":false,"type":"string"},{"name":"name","in":"query","description":"The name of the integration to get (refers to a package name).","required":false,"type":"string"},{"name":"Gram-Session","in":"header","description":"Session header","required":false,"type":"string"},{"name":"Gram-Project","in":"header","description":"project header","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetIntegrationResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/IntegrationsGetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/IntegrationsGetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/IntegrationsGetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/IntegrationsGetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/IntegrationsGetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/IntegrationsGetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/IntegrationsGetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/IntegrationsGetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/IntegrationsGetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}]}},"/rpc/integrations.list":{"get":{"description":"List available third-party integrations.","operationId":"integrations#list","parameters":[{"collectionFormat":"multi","description":"Keywords to filter integrations by","in":"query","items":{"maxLength":20,"type":"string"},"name":"keywords","required":false,"type":"array"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListIntegrationsResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/IntegrationsListBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/IntegrationsListUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/IntegrationsListForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/IntegrationsListNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/IntegrationsListConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/IntegrationsListUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/IntegrationsListInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/IntegrationsListUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/IntegrationsListGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"list integrations","tags":["integrations"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListIntegrations"}}},"/rpc/keys.create":{"post":{"description":"Create a new api key","operationId":"keys#createKey","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"in":"body","name":"CreateKeyRequestBody","required":true,"schema":{"$ref":"#/definitions/KeysCreateKeyRequestBody","required":["name","scopes"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Key","required":["id","organization_id","created_by_user_id","name","key_prefix","scopes","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/KeysCreateKeyBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/KeysCreateKeyUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/KeysCreateKeyForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/KeysCreateKeyNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/KeysCreateKeyConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/KeysCreateKeyUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/KeysCreateKeyInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/KeysCreateKeyUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/KeysCreateKeyGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"createKey keys","tags":["keys"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateAPIKey"}}},"/rpc/keys.list":{"get":{"description":"List all api keys for an organization","operationId":"keys#listKeys","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListKeysResult","required":["keys"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/KeysListKeysBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/KeysListKeysUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/KeysListKeysForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/KeysListKeysNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/KeysListKeysConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/KeysListKeysUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/KeysListKeysInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/KeysListKeysUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/KeysListKeysGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"listKeys keys","tags":["keys"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListAPIKeys"}}},"/rpc/keys.revoke":{"delete":{"description":"Revoke a api key","operationId":"keys#revokeKey","parameters":[{"description":"The ID of the key to revoke","in":"query","name":"id","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/KeysRevokeKeyBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/KeysRevokeKeyUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/KeysRevokeKeyForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/KeysRevokeKeyNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/KeysRevokeKeyConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/KeysRevokeKeyUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/KeysRevokeKeyInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/KeysRevokeKeyUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/KeysRevokeKeyGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"revokeKey keys","tags":["keys"],"x-speakeasy-name-override":"revokeById","x-speakeasy-react-hook":{"name":"RevokeAPIKey"}}},"/rpc/mcpMetadata.get":{"get":{"description":"Fetch the metadata that powers the MCP install page.","operationId":"mcpMetadata#getMcpMetadata","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"toolset_slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getMcpMetadata mcpMetadata","tags":["mcpMetadata"],"x-speakeasy-name-override":"get","x-speakeasy-react-hook":{"name":"GetMcpMetadata"}}},"/rpc/mcpMetadata.set":{"post":{"description":"Create or update the metadata that powers the MCP install page.","operationId":"mcpMetadata#setMcpMetadata","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"SetMcpMetadataRequestBody","required":true,"schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataRequestBody","required":["toolset_slug"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/McpMetadata","required":["id","toolset_id","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"setMcpMetadata mcpMetadata","tags":["mcpMetadata"],"x-speakeasy-name-override":"set"}},"/rpc/packages.create":{"post":{"description":"Create a new package for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#createPackage","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreatePackageRequestBody","required":true,"schema":{"$ref":"#/definitions/PackagesCreatePackageRequestBody","required":["name","title","summary"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CreatePackageResult","required":["package"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesCreatePackageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesCreatePackageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesCreatePackageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesCreatePackageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesCreatePackageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesCreatePackageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesCreatePackageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesCreatePackageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesCreatePackageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createPackage packages","tags":["packages"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreatePackage"}}},"/rpc/packages.list":{"get":{"description":"List all packages for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#listPackages","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListPackagesResult","required":["packages"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesListPackagesBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesListPackagesUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesListPackagesForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesListPackagesNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesListPackagesConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesListPackagesUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesListPackagesInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesListPackagesUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesListPackagesGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listPackages packages","tags":["packages"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListPackages"}}},"/rpc/packages.listVersions":{"get":{"description":"List published versions of a package.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#listVersions","parameters":[{"description":"The name of the package","in":"query","name":"name","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListVersionsResult","required":["package","versions"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesListVersionsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesListVersionsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesListVersionsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesListVersionsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesListVersionsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesListVersionsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesListVersionsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesListVersionsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesListVersionsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listVersions packages","tags":["packages"],"x-speakeasy-name-override":"listVersions","x-speakeasy-react-hook":{"name":"ListVersions"}}},"/rpc/packages.publish":{"post":{"description":"Publish a new version of a package.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#publish","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"PublishRequestBody","required":true,"schema":{"$ref":"#/definitions/PackagesPublishRequestBody","required":["name","version","deployment_id","visibility"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/PublishPackageResult","required":["package","version"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesPublishBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesPublishUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesPublishForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesPublishNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesPublishConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesPublishUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesPublishInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesPublishUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesPublishGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"publish packages","tags":["packages"],"x-speakeasy-name-override":"publish","x-speakeasy-react-hook":{"name":"PublishPackage"}}},"/rpc/packages.update":{"put":{"description":"Update package details.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#updatePackage","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdatePackageRequestBody","required":true,"schema":{"$ref":"#/definitions/PackagesUpdatePackageRequestBody","required":["id"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UpdatePackageResult","required":["package"]}},"304":{"description":"Not Modified response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageNotModifiedResponseBody","required":["location"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"updatePackage packages","tags":["packages"],"x-speakeasy-name-override":"update","x-speakeasy-react-hook":{"name":"UpdatePackage"}}},"/rpc/projects.create":{"post":{"description":"Create a new project.\n\n**Required security scopes for apikey**:\n * `producer`","operationId":"projects#createProject","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"in":"body","name":"CreateProjectRequestBody","required":true,"schema":{"$ref":"#/definitions/ProjectsCreateProjectRequestBody","required":["organization_id","name"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CreateProjectResult","required":["project"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null},{"session_header_Gram-Session":null}],"summary":"createProject projects","tags":["projects"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateProject"}}},"/rpc/projects.list":{"get":{"description":"List all projects for an organization.\n\n**Required security scopes for apikey**:\n * `producer`","operationId":"projects#listProjects","parameters":[{"description":"The ID of the organization to list projects for","in":"query","name":"organization_id","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListProjectsResult","required":["projects"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ProjectsListProjectsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ProjectsListProjectsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ProjectsListProjectsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ProjectsListProjectsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ProjectsListProjectsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ProjectsListProjectsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ProjectsListProjectsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ProjectsListProjectsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ProjectsListProjectsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null},{"session_header_Gram-Session":null}],"summary":"listProjects projects","tags":["projects"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListProjects"}}},"/rpc/projects.setLogo":{"post":{"description":"Uploads a logo for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"projects#setLogo","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"SetLogoRequestBody","required":true,"schema":{"$ref":"#/definitions/ProjectsSetLogoRequestBody","required":["asset_id"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/SetProjectLogoResult","required":["project"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ProjectsSetLogoBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ProjectsSetLogoUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ProjectsSetLogoForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ProjectsSetLogoNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ProjectsSetLogoConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ProjectsSetLogoUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ProjectsSetLogoInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ProjectsSetLogoUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ProjectsSetLogoGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"setLogo projects","tags":["projects"],"x-speakeasy-name-override":"setLogo","x-speakeasy-react-hook":{"name":"setProjectLogo"}}},"/rpc/slack.callback":{"get":{"description":"Handles the authentication callback.","operationId":"slack#callback","parameters":[{"description":"The state parameter from the callback","in":"query","name":"state","required":true,"type":"string"},{"description":"The code parameter from the callback","in":"query","name":"code","required":true,"type":"string"}],"responses":{"307":{"description":"Temporary Redirect response.","headers":{"Location":{"description":"The URL to redirect to after authentication","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackCallbackBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackCallbackUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackCallbackForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackCallbackNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackCallbackConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackCallbackUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackCallbackInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackCallbackUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackCallbackGatewayErrorResponseBody"}}},"schemes":["http"],"summary":"callback slack","tags":["slack"],"x-speakeasy-name-override":"slackCallback","x-speakeasy-react-hook":{"disabled":true}}},"/rpc/slack.deleteConnection":{"delete":{"description":"delete slack connection for an organization and project.","operationId":"slack#deleteSlackConnection","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"204":{"description":"No Content response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"deleteSlackConnection slack","tags":["slack"],"x-speakeasy-name-override":"deleteSlackConnection","x-speakeasy-react-hook":{"name":"deleteSlackConnection"}}},"/rpc/slack.getConnection":{"get":{"description":"get slack connection for an organization and project.","operationId":"slack#getSlackConnection","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetSlackConnectionResult","required":["slack_team_name","slack_team_id","default_toolset_slug","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getSlackConnection slack","tags":["slack"],"x-speakeasy-name-override":"getSlackConnection","x-speakeasy-react-hook":{"name":"getSlackConnection"}}},"/rpc/slack.updateConnection":{"post":{"description":"update slack connection for an organization and project.","operationId":"slack#updateSlackConnection","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdateSlackConnectionRequestBody","required":true,"schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionRequestBody","required":["default_toolset_slug"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetSlackConnectionResult","required":["slack_team_name","slack_team_id","default_toolset_slug","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"updateSlackConnection slack","tags":["slack"],"x-speakeasy-name-override":"updateSlackConnection","x-speakeasy-react-hook":{"name":"updateSlackConnection"}}},"/rpc/templates.create":{"post":{"description":"Create a new prompt template.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"templates#createTemplate","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreateTemplateRequestBody","required":true,"schema":{"$ref":"#/definitions/TemplatesCreateTemplateRequestBody","required":["name","prompt","engine","kind"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CreatePromptTemplateResult","required":["template"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"createTemplate templates","tags":["templates"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateTemplate"}}},"/rpc/templates.delete":{"delete":{"description":"Delete prompt template by its ID or name.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"templates#deleteTemplate","parameters":[{"description":"The ID of the prompt template","in":"query","name":"id","required":false,"type":"string"},{"description":"The name of the prompt template","in":"query","name":"name","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"204":{"description":"No Content response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"deleteTemplate templates","tags":["templates"],"x-speakeasy-name-override":"delete","x-speakeasy-react-hook":{"name":"DeleteTemplate"}}},"/rpc/templates.get":{"get":{"description":"Get prompt template by its ID or name.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`\n\n**Required security scopes for apikey**:\n * `consumer`\n\n**Required security scopes for project_slug**:\n * `consumer`","operationId":"templates#getTemplate","parameters":[{"description":"The ID of the prompt template","in":"query","name":"id","required":false,"type":"string"},{"description":"The name of the prompt template","in":"query","name":"name","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetPromptTemplateResult","required":["template"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"getTemplate templates","tags":["templates"],"x-speakeasy-name-override":"get","x-speakeasy-react-hook":{"name":"Template"}}},"/rpc/templates.list":{"get":{"description":"List available prompt template.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"templates#listTemplates","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListPromptTemplatesResult","required":["templates"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"listTemplates templates","tags":["templates"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"Templates"}}},"/rpc/templates.render":{"post":{"description":"Render a prompt template by ID with provided input data.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`\n\n**Required security scopes for apikey**:\n * `consumer`\n\n**Required security scopes for project_slug**:\n * `consumer`","operationId":"templates#renderTemplateByID","parameters":[{"description":"The ID of the prompt template to render","in":"query","name":"id","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"RenderTemplateByIDRequestBody","required":true,"schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDRequestBody","required":["arguments"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/RenderTemplateResult","required":["prompt"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"renderTemplateByID templates","tags":["templates"],"x-speakeasy-name-override":"renderByID","x-speakeasy-react-hook":{"name":"RenderTemplateByID","type":"query"}}},"/rpc/templates.renderDirect":{"post":{"description":"Render a prompt template directly with all template fields provided.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`\n\n**Required security scopes for apikey**:\n * `consumer`\n\n**Required security scopes for project_slug**:\n * `consumer`","operationId":"templates#renderTemplate","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"RenderTemplateRequestBody","required":true,"schema":{"$ref":"#/definitions/TemplatesRenderTemplateRequestBody","required":["prompt","arguments","engine","kind"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/RenderTemplateResult","required":["prompt"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"renderTemplate templates","tags":["templates"],"x-speakeasy-name-override":"render","x-speakeasy-react-hook":{"name":"RenderTemplate","type":"query"}}},"/rpc/templates.update":{"post":{"description":"Update a prompt template.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"templates#updateTemplate","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdateTemplateRequestBody","required":true,"schema":{"$ref":"#/definitions/TemplatesUpdateTemplateRequestBody","required":["id"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UpdatePromptTemplateResult","required":["template"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"updateTemplate templates","tags":["templates"],"x-speakeasy-name-override":"update","x-speakeasy-react-hook":{"name":"UpdateTemplate"}}},"/rpc/tools.list":{"get":{"description":"List all tools for a project","operationId":"tools#listTools","parameters":[{"description":"The cursor to fetch results from","in":"query","name":"cursor","required":false,"type":"string"},{"description":"The number of tools to return per page","format":"int32","in":"query","name":"limit","required":false,"type":"integer"},{"description":"The deployment ID. If unset, latest deployment will be used.","in":"query","name":"deployment_id","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListToolsResult","required":["tools"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsListToolsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsListToolsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsListToolsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsListToolsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsListToolsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsListToolsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsListToolsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsListToolsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsListToolsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listTools tools","tags":["tools"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListTools"}}},"/rpc/toolsets.addExternalOAuthServer":{"post":{"description":"Associate an external OAuth server with a toolset","operationId":"toolsets#addExternalOAuthServer","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"AddExternalOAuthServerRequestBody","required":true,"schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerRequestBody","required":["external_oauth_server"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"addExternalOAuthServer toolsets","tags":["toolsets"],"x-speakeasy-name-override":"addExternalOAuthServer","x-speakeasy-react-hook":{"name":"AddExternalOAuthServer"}}},"/rpc/toolsets.checkMCPSlugAvailability":{"get":{"description":"Check if a MCP slug is available","operationId":"toolsets#checkMCPSlugAvailability","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"boolean"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"checkMCPSlugAvailability toolsets","tags":["toolsets"],"x-speakeasy-name-override":"checkMCPSlugAvailability","x-speakeasy-react-hook":{"name":"CheckMCPSlugAvailability"}}},"/rpc/toolsets.clone":{"post":{"description":"Clone an existing toolset with a new name","operationId":"toolsets#cloneToolset","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"cloneToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"cloneBySlug","x-speakeasy-react-hook":{"name":"CloneToolset"}}},"/rpc/toolsets.create":{"post":{"description":"Create a new toolset with associated tools","operationId":"toolsets#createToolset","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreateToolsetRequestBody","required":true,"schema":{"$ref":"#/definitions/ToolsetsCreateToolsetRequestBody","required":["name"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateToolset"}}},"/rpc/toolsets.delete":{"delete":{"description":"Delete a toolset by its ID","operationId":"toolsets#deleteToolset","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"204":{"description":"No Content response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"deleteToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"deleteBySlug","x-speakeasy-react-hook":{"name":"DeleteToolset"}}},"/rpc/toolsets.get":{"get":{"description":"Get detailed information about a toolset including full HTTP tool definitions","operationId":"toolsets#getToolset","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"getBySlug","x-speakeasy-react-hook":{"name":"Toolset"}}},"/rpc/toolsets.list":{"get":{"description":"List all toolsets for a project","operationId":"toolsets#listToolsets","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListToolsetsResult","required":["toolsets"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listToolsets toolsets","tags":["toolsets"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListToolsets"}}},"/rpc/toolsets.removeOAuthServer":{"post":{"description":"Remove OAuth server association from a toolset","operationId":"toolsets#removeOAuthServer","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"removeOAuthServer toolsets","tags":["toolsets"],"x-speakeasy-name-override":"removeOAuthServer","x-speakeasy-react-hook":{"name":"RemoveOAuthServer"}}},"/rpc/toolsets.update":{"post":{"description":"Update a toolset's properties including name, description, and HTTP tools","operationId":"toolsets#updateToolset","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdateToolsetRequestBody","required":true,"schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetRequestBody"}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"updateToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"updateBySlug","x-speakeasy-react-hook":{"name":"UpdateToolset"}}},"/rpc/usage.createCheckout":{"post":{"description":"Create a checkout link for upgrading to the business plan","operationId":"usage#createCheckout","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"string"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createCheckout usage","tags":["usage"],"x-speakeasy-name-override":"createCheckout","x-speakeasy-react-hook":{"name":"createCheckout"}}},"/rpc/usage.createCustomerSession":{"post":{"description":"Create a customer session for the user","operationId":"usage#createCustomerSession","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"string"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createCustomerSession usage","tags":["usage"],"x-speakeasy-name-override":"createCustomerSession","x-speakeasy-react-hook":{"name":"createCustomerSession"}}},"/rpc/usage.getPeriodUsage":{"get":{"description":"Get the usage for a project for a given period","operationId":"usage#getPeriodUsage","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/PeriodUsage","required":["tool_calls","max_tool_calls","servers","max_servers","actual_enabled_server_count"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getPeriodUsage usage","tags":["usage"],"x-speakeasy-name-override":"getPeriodUsage","x-speakeasy-react-hook":{"name":"getPeriodUsage"}}},"/rpc/usage.getUsageTiers":{"get":{"description":"Get the usage tiers","operationId":"usage#getUsageTiers","responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UsageTiers","required":["free","pro","enterprise"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersGatewayErrorResponseBody"}}},"schemes":["http"],"summary":"getUsageTiers usage","tags":["usage"],"x-speakeasy-name-override":"getUsageTiers","x-speakeasy-react-hook":{"name":"getUsageTiers"}}},"/rpc/variations.deleteGlobal":{"delete":{"description":"Create or update a globally defined tool variation.","operationId":"variations#deleteGlobal","parameters":[{"description":"The ID of the variation to delete","in":"query","name":"variation_id","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/DeleteGlobalToolVariationResult","required":["variation_id"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"deleteGlobal variations","tags":["variations"],"x-speakeasy-name-override":"deleteGlobal","x-speakeasy-react-hook":{"name":"deleteGlobalVariation"}}},"/rpc/variations.listGlobal":{"get":{"description":"List globally defined tool variations.","operationId":"variations#listGlobal","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListVariationsResult","required":["variations"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/VariationsListGlobalBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/VariationsListGlobalUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/VariationsListGlobalForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/VariationsListGlobalNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/VariationsListGlobalConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/VariationsListGlobalUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/VariationsListGlobalInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/VariationsListGlobalUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/VariationsListGlobalGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"listGlobal variations","tags":["variations"],"x-speakeasy-name-override":"listGlobal","x-speakeasy-react-hook":{"name":"GlobalVariations"}}},"/rpc/variations.upsertGlobal":{"post":{"description":"Create or update a globally defined tool variation.","operationId":"variations#upsertGlobal","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpsertGlobalRequestBody","required":true,"schema":{"$ref":"#/definitions/VariationsUpsertGlobalRequestBody","required":["src_tool_name"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UpsertGlobalToolVariationResult","required":["variation"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"upsertGlobal variations","tags":["variations"],"x-speakeasy-name-override":"upsertGlobal","x-speakeasy-react-hook":{"name":"UpsertGlobalVariation"}}},"/rpc/{project_slug}/slack.login":{"get":{"description":"Proxies to auth login through speakeasy oidc.","operationId":"slack#login","parameters":[{"in":"path","name":"project_slug","required":true,"type":"string"},{"description":"The dashboard location to return too","in":"query","name":"return_url","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"307":{"description":"Temporary Redirect response.","headers":{"Location":{"description":"The URL to redirect to after authentication","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackLoginBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackLoginUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackLoginForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackLoginNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackLoginConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackLoginUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackLoginInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackLoginUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackLoginGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_query_project_slug":null,"session_header_Gram-Session":null}],"summary":"login slack","tags":["slack"],"x-speakeasy-name-override":"slackLogin","x-speakeasy-react-hook":{"disabled":true}}}},"definitions":{"AddDeploymentPackageForm":{"title":"AddDeploymentPackageForm","type":"object","properties":{"name":{"type":"string","description":"The name of the package.","example":"Quis labore accusantium unde."},"version":{"type":"string","description":"The version of the package.","example":"Non minus quia temporibus modi laboriosam."}},"example":{"name":"Id animi.","version":"Pariatur ea eos corrupti."},"required":["name"]},"AddFunctionsForm":{"title":"AddFunctionsForm","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the functions file from the assets service.","example":"Non adipisci facere veritatis ut."},"name":{"type":"string","description":"The functions file display name.","example":"Corrupti id voluptatem molestiae molestias voluptatibus."},"runtime":{"type":"string","description":"The runtime to use when executing functions. Allowed values are: nodejs:22, python:3.12.","example":"Iste eum repudiandae nostrum facere."},"slug":{"type":"string","description":"A URL-friendly string that identifies the functions file. Usually derived from the name.","example":"mah","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"asset_id":"Molestias rerum laborum dolores voluptas.","name":"Error libero temporibus provident.","runtime":"Esse animi autem veritatis cum non sunt.","slug":"m5v"},"required":["asset_id","name","slug","runtime"]},"AddOpenAPIv3DeploymentAssetForm":{"title":"AddOpenAPIv3DeploymentAssetForm","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the uploaded asset.","example":"Voluptatum qui et eum et dolorem."},"name":{"type":"string","description":"The name to give the document as it will be displayed in UIs.","example":"Quisquam qui blanditiis ex et dolor."},"slug":{"type":"string","description":"The slug to give the document as it will be displayed in URLs.","example":"c29","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"asset_id":"Eum non libero asperiores voluptatem quos inventore.","name":"Facilis quod eius sit.","slug":"1pi"},"required":["asset_id","name","slug"]},"AddPackageForm":{"title":"AddPackageForm","type":"object","properties":{"name":{"type":"string","description":"The name of the package to add.","example":"Ducimus impedit nihil rem suscipit aliquid repellat."},"version":{"type":"string","description":"The version of the package to add. If omitted, the latest version will be used.","example":"Tempora magni ipsam."}},"example":{"name":"Eveniet dolor quas rerum.","version":"Sed soluta quas."},"required":["name"]},"Asset":{"title":"Asset","type":"object","properties":{"content_length":{"type":"integer","description":"The content length of the asset","example":826917556528728549,"format":"int64"},"content_type":{"type":"string","description":"The content type of the asset","example":"Dolores fugiat tempore similique qui."},"created_at":{"type":"string","description":"The creation date of the asset.","example":"1972-12-20T18:36:54Z","format":"date-time"},"id":{"type":"string","description":"The ID of the asset","example":"Dicta nam enim nulla."},"kind":{"type":"string","example":"image","enum":["openapiv3","image","functions","unknown"]},"sha256":{"type":"string","description":"The SHA256 hash of the asset","example":"Officia maiores ea porro vitae culpa."},"updated_at":{"type":"string","description":"The last update date of the asset.","example":"1975-04-03T22:51:46Z","format":"date-time"}},"example":{"content_length":972143798899171096,"content_type":"Aperiam recusandae voluptatem autem.","created_at":"1977-08-10T02:12:01Z","id":"Ut similique nostrum suscipit dolor excepturi rerum.","kind":"image","sha256":"Id quas.","updated_at":"1988-04-10T02:47:49Z"},"required":["id","kind","sha256","content_type","content_length","created_at","updated_at"]},"AssetsListAssetsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3BadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3ConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3ForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3GatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3InvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3InvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3NotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3UnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3UnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3UnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3BadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3ConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3ForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3GatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3InvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3InvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3NotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3UnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3UnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3UnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoResponseBody":{"title":"AuthInfoResponseBody","type":"object","properties":{"active_organization_id":{"type":"string","example":"Eos aut ut molestiae itaque."},"gram_account_type":{"type":"string","example":"Quo maxime assumenda labore."},"is_admin":{"type":"boolean","example":false},"organizations":{"type":"array","items":{"$ref":"#/definitions/OrganizationEntry"},"example":[{"id":"Iusto alias et ea quisquam nostrum itaque.","name":"Eius est ut odit magni.","projects":[{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"}],"slug":"Blanditiis ut.","sso_connection_id":"Quo dolor vero dolorum.","user_workspace_slugs":["Voluptatem quae totam quisquam laborum qui.","Sunt quia.","Et eos minima ut assumenda similique.","Sunt voluptatem veniam blanditiis."]},{"id":"Iusto alias et ea quisquam nostrum itaque.","name":"Eius est ut odit magni.","projects":[{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"}],"slug":"Blanditiis ut.","sso_connection_id":"Quo dolor vero dolorum.","user_workspace_slugs":["Voluptatem quae totam quisquam laborum qui.","Sunt quia.","Et eos minima ut assumenda similique.","Sunt voluptatem veniam blanditiis."]}]},"user_display_name":{"type":"string","example":"Quam accusamus provident dolorem reiciendis ea."},"user_email":{"type":"string","example":"Dolores in error sunt ducimus."},"user_id":{"type":"string","example":"Provident dolorem."},"user_photo_url":{"type":"string","example":"Facere quaerat aut doloribus necessitatibus nihil."},"user_signature":{"type":"string","example":"Eos est dolor id quidem non qui."}},"example":{"active_organization_id":"Odio quia consequatur vitae.","gram_account_type":"Repellat nulla voluptates eos.","is_admin":false,"organizations":[{"id":"Iusto alias et ea quisquam nostrum itaque.","name":"Eius est ut odit magni.","projects":[{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"}],"slug":"Blanditiis ut.","sso_connection_id":"Quo dolor vero dolorum.","user_workspace_slugs":["Voluptatem quae totam quisquam laborum qui.","Sunt quia.","Et eos minima ut assumenda similique.","Sunt voluptatem veniam blanditiis."]},{"id":"Iusto alias et ea quisquam nostrum itaque.","name":"Eius est ut odit magni.","projects":[{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"}],"slug":"Blanditiis ut.","sso_connection_id":"Quo dolor vero dolorum.","user_workspace_slugs":["Voluptatem quae totam quisquam laborum qui.","Sunt quia.","Et eos minima ut assumenda similique.","Sunt voluptatem veniam blanditiis."]}],"user_display_name":"Recusandae ab ut voluptatem corporis incidunt laborum.","user_email":"Saepe reprehenderit.","user_id":"Ad cum.","user_photo_url":"Sed distinctio.","user_signature":"Qui et sint."},"required":["user_id","user_email","is_admin","active_organization_id","organizations","gram_account_type"]},"AuthInfoUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterRequestBody":{"title":"AuthRegisterRequestBody","type":"object","properties":{"org_name":{"type":"string","description":"The name of the org to register","example":"Et tempora aut libero."}},"example":{"org_name":"Autem dolorem earum."},"required":["org_name"]},"AuthRegisterUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"CanonicalToolAttributes":{"title":"CanonicalToolAttributes","type":"object","properties":{"confirm":{"type":"string","description":"Confirmation mode for the tool","example":"Numquam consequatur debitis fugiat minima adipisci nulla."},"confirm_prompt":{"type":"string","description":"Prompt for the confirmation","example":"Fugit aliquid aut amet nostrum."},"description":{"type":"string","description":"Description of the tool","example":"Nulla ut architecto."},"name":{"type":"string","description":"The name of the tool","example":"Dolores suscipit aliquam non."},"summarizer":{"type":"string","description":"Summarizer for the tool","example":"Dicta adipisci quia magni."},"summary":{"type":"string","description":"Summary of the tool","example":"Voluptates minus."},"tags":{"type":"array","items":{"type":"string","example":"Optio necessitatibus quae reprehenderit aut quia."},"description":"The tags list for this http tool","example":["Quod quaerat quaerat rerum occaecati iste.","Vel eos cupiditate.","Repellat et officia ullam error."]},"variation_id":{"type":"string","description":"The ID of the variation that was applied to the tool","example":"Aut et maxime quo et est."}},"description":"The original details of a tool","example":{"confirm":"Assumenda et.","confirm_prompt":"Quasi sit quas.","description":"Ducimus ipsum.","name":"Voluptatum eos ut explicabo et aut maiores.","summarizer":"Voluptatem voluptatem.","summary":"Occaecati doloremque reprehenderit est.","tags":["Architecto quibusdam eligendi.","Consequatur consectetur."],"variation_id":"Fugit rerum aliquam ratione."},"required":["variation_id","name"]},"Chat":{"title":"Chat","type":"object","properties":{"created_at":{"type":"string","description":"When the chat was created.","example":"1980-09-03T05:07:37Z","format":"date-time"},"id":{"type":"string","description":"The ID of the chat","example":"Harum consequatur aut."},"messages":{"type":"array","items":{"$ref":"#/definitions/ChatMessage"},"description":"The list of messages in the chat","example":[{"content":"Totam voluptatem tempora consequatur.","created_at":"1996-02-29T20:17:00Z","finish_reason":"Inventore accusamus accusamus aut repudiandae.","id":"Qui est repudiandae sint placeat sed explicabo.","model":"Omnis laudantium distinctio qui.","role":"Esse perspiciatis totam iure.","tool_call_id":"Earum culpa rem et nulla.","tool_calls":"Autem ut in repellendus cupiditate.","user_id":"Facere minus ratione qui."},{"content":"Totam voluptatem tempora consequatur.","created_at":"1996-02-29T20:17:00Z","finish_reason":"Inventore accusamus accusamus aut repudiandae.","id":"Qui est repudiandae sint placeat sed explicabo.","model":"Omnis laudantium distinctio qui.","role":"Esse perspiciatis totam iure.","tool_call_id":"Earum culpa rem et nulla.","tool_calls":"Autem ut in repellendus cupiditate.","user_id":"Facere minus ratione qui."},{"content":"Totam voluptatem tempora consequatur.","created_at":"1996-02-29T20:17:00Z","finish_reason":"Inventore accusamus accusamus aut repudiandae.","id":"Qui est repudiandae sint placeat sed explicabo.","model":"Omnis laudantium distinctio qui.","role":"Esse perspiciatis totam iure.","tool_call_id":"Earum culpa rem et nulla.","tool_calls":"Autem ut in repellendus cupiditate.","user_id":"Facere minus ratione qui."},{"content":"Totam voluptatem tempora consequatur.","created_at":"1996-02-29T20:17:00Z","finish_reason":"Inventore accusamus accusamus aut repudiandae.","id":"Qui est repudiandae sint placeat sed explicabo.","model":"Omnis laudantium distinctio qui.","role":"Esse perspiciatis totam iure.","tool_call_id":"Earum culpa rem et nulla.","tool_calls":"Autem ut in repellendus cupiditate.","user_id":"Facere minus ratione qui."}]},"num_messages":{"type":"integer","description":"The number of messages in the chat","example":7717714649945354497,"format":"int64"},"title":{"type":"string","description":"The title of the chat","example":"A dicta corporis doloremque."},"updated_at":{"type":"string","description":"When the chat was last updated.","example":"2007-03-02T09:00:29Z","format":"date-time"},"user_id":{"type":"string","description":"The ID of the user who created the chat","example":"Provident est aut."}},"example":{"created_at":"1994-12-18T11:41:09Z","id":"Tenetur eaque quisquam id veritatis.","messages":[{"content":"Totam voluptatem tempora consequatur.","created_at":"1996-02-29T20:17:00Z","finish_reason":"Inventore accusamus accusamus aut repudiandae.","id":"Qui est repudiandae sint placeat sed explicabo.","model":"Omnis laudantium distinctio qui.","role":"Esse perspiciatis totam iure.","tool_call_id":"Earum culpa rem et nulla.","tool_calls":"Autem ut in repellendus cupiditate.","user_id":"Facere minus ratione qui."},{"content":"Totam voluptatem tempora consequatur.","created_at":"1996-02-29T20:17:00Z","finish_reason":"Inventore accusamus accusamus aut repudiandae.","id":"Qui est repudiandae sint placeat sed explicabo.","model":"Omnis laudantium distinctio qui.","role":"Esse perspiciatis totam iure.","tool_call_id":"Earum culpa rem et nulla.","tool_calls":"Autem ut in repellendus cupiditate.","user_id":"Facere minus ratione qui."},{"content":"Totam voluptatem tempora consequatur.","created_at":"1996-02-29T20:17:00Z","finish_reason":"Inventore accusamus accusamus aut repudiandae.","id":"Qui est repudiandae sint placeat sed explicabo.","model":"Omnis laudantium distinctio qui.","role":"Esse perspiciatis totam iure.","tool_call_id":"Earum culpa rem et nulla.","tool_calls":"Autem ut in repellendus cupiditate.","user_id":"Facere minus ratione qui."}],"num_messages":442840667567963292,"title":"Suscipit modi accusamus sint et autem.","updated_at":"2008-02-26T10:12:34Z","user_id":"Voluptates est consequatur."},"required":["messages","id","title","user_id","num_messages","created_at","updated_at"]},"ChatCreditUsageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageResponseBody":{"title":"ChatCreditUsageResponseBody","type":"object","properties":{"credits_used":{"type":"number","description":"The number of credits remaining","example":0.8163641879722497,"format":"double"},"monthly_credits":{"type":"integer","description":"The number of monthly credits","example":7158061307201392704,"format":"int64"}},"example":{"credits_used":0.3591808659368909,"monthly_credits":3797200189620140708},"required":["credits_used","monthly_credits"]},"ChatCreditUsageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatMessage":{"title":"ChatMessage","type":"object","properties":{"content":{"type":"string","description":"The content of the message","example":"Ea cupiditate."},"created_at":{"type":"string","description":"When the message was created.","example":"1988-11-30T19:38:49Z","format":"date-time"},"finish_reason":{"type":"string","description":"The finish reason of the message","example":"Aliquid praesentium voluptatibus."},"id":{"type":"string","description":"The ID of the message","example":"Inventore sint."},"model":{"type":"string","description":"The model that generated the message","example":"Quibusdam quae reiciendis."},"role":{"type":"string","description":"The role of the message","example":"Est et cum quo."},"tool_call_id":{"type":"string","description":"The tool call ID of the message","example":"Adipisci debitis animi alias vero voluptas velit."},"tool_calls":{"type":"string","description":"The tool calls in the message as a JSON blob","example":"Qui voluptatem at veniam facilis omnis."},"user_id":{"type":"string","description":"The ID of the user who created the message","example":"Molestiae voluptatem consequuntur."}},"example":{"content":"Sit voluptatem.","created_at":"2007-04-01T02:04:38Z","finish_reason":"Esse aut.","id":"Et nulla et beatae sapiente similique est.","model":"Sunt excepturi minima.","role":"Quod ratione quia est est architecto qui.","tool_call_id":"Est sit eligendi.","tool_calls":"Accusantium doloribus.","user_id":"Quae aut et aspernatur eos."},"required":["id","role","model","created_at"]},"ChatOverview":{"title":"ChatOverview","type":"object","properties":{"created_at":{"type":"string","description":"When the chat was created.","example":"1975-04-21T00:13:16Z","format":"date-time"},"id":{"type":"string","description":"The ID of the chat","example":"Dolore maxime."},"num_messages":{"type":"integer","description":"The number of messages in the chat","example":5761080014681028109,"format":"int64"},"title":{"type":"string","description":"The title of the chat","example":"Nihil ut est velit unde rem."},"updated_at":{"type":"string","description":"When the chat was last updated.","example":"1989-09-03T22:09:16Z","format":"date-time"},"user_id":{"type":"string","description":"The ID of the user who created the chat","example":"Est minus quibusdam enim atque quia."}},"example":{"created_at":"1990-04-11T15:17:41Z","id":"Deserunt sunt quae rem.","num_messages":1940512381498388788,"title":"Qui animi ut quo.","updated_at":"2007-02-02T20:26:32Z","user_id":"Enim nihil nesciunt."},"required":["id","title","user_id","num_messages","created_at","updated_at"]},"CreateDeploymentResult":{"title":"CreateDeploymentResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"CreatePackageResult":{"title":"CreatePackageResult","type":"object","properties":{"package":{"$ref":"#/definitions/Package"}},"example":{"package":{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."}},"required":["package"]},"CreateProjectResult":{"title":"CreateProjectResult","type":"object","properties":{"project":{"$ref":"#/definitions/Project"}},"example":{"project":{"created_at":"2000-03-03T01:19:45Z","id":"Natus sit porro dolor vitae.","logo_asset_id":"Fugit nesciunt saepe enim rem saepe eos.","name":"Qui dolores accusantium soluta qui.","organization_id":"Ex dolorem laboriosam iusto.","slug":"yvl","updated_at":"2004-08-29T03:31:46Z"}},"required":["project"]},"CreatePromptTemplateResult":{"title":"CreatePromptTemplateResult","type":"object","properties":{"template":{"$ref":"#/definitions/PromptTemplate"}},"example":{"template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},"required":["template"]},"CustomDomain":{"title":"CustomDomain","type":"object","properties":{"activated":{"type":"boolean","description":"Whether the domain is activated in ingress","example":false},"created_at":{"type":"string","description":"When the custom domain was created.","example":"1998-11-30T04:11:37Z","format":"date-time"},"domain":{"type":"string","description":"The custom domain name","example":"Molestiae tenetur ea."},"id":{"type":"string","description":"The ID of the custom domain","example":"Expedita voluptates."},"is_updating":{"type":"boolean","description":"The custom domain is actively being registered","example":false},"organization_id":{"type":"string","description":"The ID of the organization this domain belongs to","example":"Possimus autem quis aliquid."},"updated_at":{"type":"string","description":"When the custom domain was last updated.","example":"2015-02-18T16:04:56Z","format":"date-time"},"verified":{"type":"boolean","description":"Whether the domain is verified","example":false}},"example":{"activated":true,"created_at":"1981-07-05T08:21:43Z","domain":"Amet quaerat quis.","id":"Deleniti aliquid omnis labore necessitatibus libero.","is_updating":false,"organization_id":"Est quibusdam illo quidem molestias.","updated_at":"2002-04-01T09:32:24Z","verified":false},"required":["id","organization_id","domain","verified","activated","created_at","updated_at","is_updating"]},"DeleteGlobalToolVariationResult":{"title":"DeleteGlobalToolVariationResult","type":"object","properties":{"variation_id":{"type":"string","description":"The ID of the variation that was deleted","example":"Et ut omnis sunt."}},"example":{"variation_id":"Incidunt fugiat quos necessitatibus tempore."},"required":["variation_id"]},"Deployment":{"title":"Deployment","type":"object","properties":{"cloned_from":{"type":"string","description":"The ID of the deployment that this deployment was cloned from.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"created_at":{"type":"string","description":"The creation date of the deployment.","example":"2009-01-15T05:24:59Z","format":"date-time"},"external_id":{"type":"string","description":"The external ID to refer to the deployment. This can be a git commit hash for example.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"external_url":{"type":"string","description":"The upstream URL a deployment can refer to. This can be a github url to a commit hash or pull request.","example":"Dolorem iusto commodi qui recusandae."},"functions_assets":{"type":"array","items":{"$ref":"#/definitions/DeploymentFunctions"},"description":"The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions.","example":[{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"},{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"}]},"functions_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":5255818368767570465,"format":"int64"},"github_pr":{"type":"string","description":"The github pull request that resulted in the deployment.","example":"1234"},"github_repo":{"type":"string","description":"The github repository in the form of \"owner/repo\".","example":"speakeasyapi/gram"},"github_sha":{"type":"string","description":"The commit hash that triggered the deployment.","example":"f33e693e9e12552043bc0ec5c37f1b8a9e076161"},"id":{"type":"string","description":"The ID to of the deployment.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"idempotency_key":{"type":"string","description":"A unique identifier that will mitigate against duplicate deployments.","example":"01jqq0ajmb4qh9eppz48dejr2m"},"openapiv3_assets":{"type":"array","items":{"$ref":"#/definitions/OpenAPIv3DeploymentAsset"},"description":"The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions.","example":[{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"},{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"}]},"openapiv3_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":6921341189797627344,"format":"int64"},"organization_id":{"type":"string","description":"The ID of the organization that the deployment belongs to.","example":"Itaque in."},"packages":{"type":"array","items":{"$ref":"#/definitions/DeploymentPackage"},"description":"The packages that were deployed.","example":[{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."}]},"project_id":{"type":"string","description":"The ID of the project that the deployment belongs to.","example":"Molestias possimus."},"status":{"type":"string","description":"The status of the deployment.","example":"Occaecati laborum eius vel."},"user_id":{"type":"string","description":"The ID of the user that created the deployment.","example":"Deserunt dolor odio ut."}},"example":{"cloned_from":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","created_at":"1995-07-16T15:39:56Z","external_id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","external_url":"Et recusandae.","functions_assets":[{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"},{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"},{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"},{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"}],"functions_tool_count":5367031416102269518,"github_pr":"1234","github_repo":"speakeasyapi/gram","github_sha":"f33e693e9e12552043bc0ec5c37f1b8a9e076161","id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","idempotency_key":"01jqq0ajmb4qh9eppz48dejr2m","openapiv3_assets":[{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"},{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"},{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"},{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"}],"openapiv3_tool_count":631479222991227360,"organization_id":"Quidem minima enim.","packages":[{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."}],"project_id":"Voluptatum et recusandae dolor rerum.","status":"Rem corrupti et iste ex quia unde.","user_id":"Qui deserunt ullam itaque molestiae et in."},"required":["id","created_at","organization_id","project_id","user_id","openapiv3_assets","status","packages","openapiv3_tool_count","functions_tool_count"]},"DeploymentFunctions":{"title":"DeploymentFunctions","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the uploaded asset.","example":"Esse cumque qui."},"id":{"type":"string","description":"The ID of the deployment asset.","example":"Aut consequuntur voluptatum quo molestiae quos vel."},"name":{"type":"string","description":"The name to give the document as it will be displayed in UIs.","example":"Facere ipsum architecto consectetur."},"runtime":{"type":"string","description":"The runtime to use when executing functions.","example":"Consectetur tenetur adipisci voluptas aut maiores et."},"slug":{"type":"string","description":"The slug to give the document as it will be displayed in URLs.","example":"ykq","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"asset_id":"Officia atque aut consequatur eos est.","id":"Voluptatum veritatis.","name":"Exercitationem omnis nihil rerum maxime.","runtime":"Consequuntur eligendi dolorem unde maxime nesciunt.","slug":"dak"},"required":["id","asset_id","name","slug","runtime"]},"DeploymentLogEvent":{"title":"DeploymentLogEvent","type":"object","properties":{"attachment_id":{"type":"string","description":"The ID of the asset tied to the log event","example":"Dolorum accusamus."},"attachment_type":{"type":"string","description":"The type of the asset tied to the log event","example":"Et perferendis debitis aut quia sit et."},"created_at":{"type":"string","description":"The creation date of the log event","example":"Harum sequi non."},"event":{"type":"string","description":"The type of event that occurred","example":"Corrupti rem voluptatem illum numquam autem rem."},"id":{"type":"string","description":"The ID of the log event","example":"Ab tempore at sed."},"message":{"type":"string","description":"The message of the log event","example":"Rerum temporibus deleniti voluptatem dolor beatae enim."}},"example":{"attachment_id":"Quisquam facere.","attachment_type":"Voluptatibus magnam sint occaecati quo aut.","created_at":"Cumque minus modi repellat voluptas.","event":"Nesciunt aspernatur qui sit facilis officiis.","id":"Laudantium pariatur esse consequatur et.","message":"Voluptates aut enim ducimus et est dolor."},"required":["id","created_at","event","message"]},"DeploymentPackage":{"title":"DeploymentPackage","type":"object","properties":{"id":{"type":"string","description":"The ID of the deployment package.","example":"Optio rem quae."},"name":{"type":"string","description":"The name of the package.","example":"Delectus quam qui laborum dolor."},"version":{"type":"string","description":"The version of the package.","example":"Rem repudiandae commodi iusto."}},"example":{"id":"Magni repellendus nostrum vitae laborum dolorum repellat.","name":"Dolores velit.","version":"Non perspiciatis quasi qui rerum."},"required":["id","name","version"]},"DeploymentSummary":{"title":"DeploymentSummary","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the deployment.","example":"1981-03-29T12:08:55Z","format":"date-time"},"functions_asset_count":{"type":"integer","description":"The number of Functions assets.","example":5071092922558999829,"format":"int64"},"functions_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from Functions.","example":9205605408623340076,"format":"int64"},"id":{"type":"string","description":"The ID to of the deployment.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"openapiv3_asset_count":{"type":"integer","description":"The number of upstream OpenAPI assets.","example":5297076832404377726,"format":"int64"},"openapiv3_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":4944169476834958170,"format":"int64"},"status":{"type":"string","description":"The status of the deployment.","example":"Nam in accusantium voluptas aut vitae."},"user_id":{"type":"string","description":"The ID of the user that created the deployment.","example":"Qui minus voluptatibus quo consequatur sed."}},"example":{"created_at":"1989-05-26T03:00:41Z","functions_asset_count":7052991497509996693,"functions_tool_count":3070928126613896762,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":3806462229495250235,"openapiv3_tool_count":6121353899794157665,"status":"Aliquid dolorum non vel minus.","user_id":"Et est."},"required":["id","created_at","user_id","status","openapiv3_asset_count","openapiv3_tool_count","functions_asset_count","functions_tool_count"]},"DeploymentsCreateDeploymentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentRequestBody":{"title":"DeploymentsCreateDeploymentRequestBody","type":"object","properties":{"external_id":{"type":"string","description":"The external ID to refer to the deployment. This can be a git commit hash for example.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"external_url":{"type":"string","description":"The upstream URL a deployment can refer to. This can be a github url to a commit hash or pull request.","example":"Modi excepturi molestiae accusantium."},"functions":{"type":"array","items":{"$ref":"#/definitions/AddFunctionsForm"},"example":[{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"},{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"},{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"}]},"github_pr":{"type":"string","description":"The github pull request that resulted in the deployment.","example":"1234"},"github_repo":{"type":"string","description":"The github repository in the form of \"owner/repo\".","example":"speakeasyapi/gram"},"github_sha":{"type":"string","description":"The commit hash that triggered the deployment.","example":"f33e693e9e12552043bc0ec5c37f1b8a9e076161"},"openapiv3_assets":{"type":"array","items":{"$ref":"#/definitions/AddOpenAPIv3DeploymentAssetForm"},"example":[{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"},{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"},{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"},{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"}]},"packages":{"type":"array","items":{"$ref":"#/definitions/AddDeploymentPackageForm"},"example":[{"name":"Debitis suscipit ipsa quo dolorem enim necessitatibus.","version":"Recusandae recusandae."},{"name":"Debitis suscipit ipsa quo dolorem enim necessitatibus.","version":"Recusandae recusandae."},{"name":"Debitis suscipit ipsa quo dolorem enim necessitatibus.","version":"Recusandae recusandae."}]}},"example":{"external_id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","external_url":"Optio aut sed.","functions":[{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"},{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"},{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"}],"github_pr":"1234","github_repo":"speakeasyapi/gram","github_sha":"f33e693e9e12552043bc0ec5c37f1b8a9e076161","openapiv3_assets":[{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"},{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"},{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"}],"packages":[{"name":"Debitis suscipit ipsa quo dolorem enim necessitatibus.","version":"Recusandae recusandae."},{"name":"Debitis suscipit ipsa quo dolorem enim necessitatibus.","version":"Recusandae recusandae."}]}},"DeploymentsCreateDeploymentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveRequestBody":{"title":"DeploymentsEvolveRequestBody","type":"object","properties":{"deployment_id":{"type":"string","description":"The ID of the deployment to evolve. If omitted, the latest deployment will be used.","example":"Quia vel ea qui eum numquam."},"exclude_functions":{"type":"array","items":{"type":"string","example":"Illo adipisci tempora ea voluptas."},"description":"The functions, identified by slug, to exclude from the new deployment when cloning a previous deployment.","example":["Qui ducimus error.","Fugit ducimus et eum."]},"exclude_openapiv3_assets":{"type":"array","items":{"type":"string","example":"Soluta magnam praesentium voluptatum."},"description":"The OpenAPI 3.x documents, identified by slug, to exclude from the new deployment when cloning a previous deployment.","example":["Dolor voluptas.","Voluptas totam omnis recusandae.","Consequatur eum."]},"exclude_packages":{"type":"array","items":{"type":"string","example":"Sit dolorem et."},"description":"The packages to exclude from the new deployment when cloning a previous deployment.","example":["Iure tempora.","Quisquam dolores est dolores odit dolor corrupti.","Ipsa laboriosam."]},"upsert_functions":{"type":"array","items":{"$ref":"#/definitions/AddFunctionsForm"},"description":"The tool functions to upsert in the new deployment.","example":[{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"},{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"}]},"upsert_openapiv3_assets":{"type":"array","items":{"$ref":"#/definitions/AddOpenAPIv3DeploymentAssetForm"},"description":"The OpenAPI 3.x documents to upsert in the new deployment.","example":[{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"},{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"},{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"}]},"upsert_packages":{"type":"array","items":{"$ref":"#/definitions/AddPackageForm"},"description":"The packages to upsert in the new deployment.","example":[{"name":"Qui voluptatem sint.","version":"Quisquam minus dolore consequuntur eum necessitatibus."},{"name":"Qui voluptatem sint.","version":"Quisquam minus dolore consequuntur eum necessitatibus."}]}},"example":{"deployment_id":"Assumenda dolorem omnis ut.","exclude_functions":["Quos est omnis tenetur et similique est.","Soluta a molestiae eligendi labore incidunt architecto.","Eveniet aspernatur et rerum sunt."],"exclude_openapiv3_assets":["Dolorem et dolorum.","Quisquam quo.","Recusandae voluptatum aut sit sed repudiandae."],"exclude_packages":["Sed sunt voluptates non vero et nostrum.","Velit fugit quaerat ea repellendus.","Recusandae officiis mollitia reiciendis."],"upsert_functions":[{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"},{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"},{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"},{"asset_id":"Sed itaque ad.","name":"Dolores doloremque nobis.","runtime":"Laboriosam vel omnis.","slug":"oo3"}],"upsert_openapiv3_assets":[{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"},{"asset_id":"Veniam explicabo et est aut cumque alias.","name":"Et blanditiis et.","slug":"cvv"}],"upsert_packages":[{"name":"Qui voluptatem sint.","version":"Quisquam minus dolore consequuntur eum necessitatibus."},{"name":"Qui voluptatem sint.","version":"Quisquam minus dolore consequuntur eum necessitatibus."}]}},"DeploymentsEvolveUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployRequestBody":{"title":"DeploymentsRedeployRequestBody","type":"object","properties":{"deployment_id":{"type":"string","description":"The ID of the deployment to redeploy.","example":"Provident assumenda id dignissimos."}},"example":{"deployment_id":"Ratione molestias minima."},"required":["deployment_id"]},"DeploymentsRedeployUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainRequestBody":{"title":"DomainsCreateDomainRequestBody","type":"object","properties":{"domain":{"type":"string","description":"The custom domain","example":"Id itaque."}},"example":{"domain":"Et soluta quia."},"required":["domain"]},"DomainsCreateDomainUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"Environment":{"title":"Environment","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the environment","example":"1989-01-12T03:37:05Z","format":"date-time"},"description":{"type":"string","description":"The description of the environment","example":"Eius est ea esse hic itaque."},"entries":{"type":"array","items":{"$ref":"#/definitions/EnvironmentEntry"},"description":"List of environment entries","example":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}]},"id":{"type":"string","description":"The ID of the environment","example":"Molestiae aperiam."},"name":{"type":"string","description":"The name of the environment","example":"Maiores officiis sapiente quod et enim accusantium."},"organization_id":{"type":"string","description":"The organization ID this environment belongs to","example":"Eos quia maxime excepturi fugit."},"project_id":{"type":"string","description":"The project ID this environment belongs to","example":"Earum sit ex maxime et."},"slug":{"type":"string","description":"The slug identifier for the environment","example":"yp4","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"updated_at":{"type":"string","description":"When the environment was last updated","example":"1976-03-03T00:17:29Z","format":"date-time"}},"example":{"created_at":"1982-07-02T10:09:48Z","description":"Ad pariatur.","entries":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}],"id":"Et eius voluptates officiis nostrum.","name":"Accusantium nemo voluptatum.","organization_id":"Ratione vel.","project_id":"Quas libero molestias odio non.","slug":"055","updated_at":"1970-10-30T17:54:09Z"},"required":["id","organization_id","project_id","name","slug","entries","created_at","updated_at"]},"EnvironmentEntry":{"title":"EnvironmentEntry","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the environment entry","example":"2003-01-24T01:07:22Z","format":"date-time"},"name":{"type":"string","description":"The name of the environment variable","example":"Blanditiis voluptas."},"updated_at":{"type":"string","description":"When the environment entry was last updated","example":"1981-08-22T09:38:10Z","format":"date-time"},"value":{"type":"string","description":"Redacted values of the environment variable","example":"Hic quam architecto natus."}},"description":"A single environment entry","example":{"created_at":"1988-02-13T10:00:19Z","name":"Consectetur tenetur.","updated_at":"1973-12-02T19:59:58Z","value":"Autem aut est possimus."},"required":["name","value","created_at","updated_at"]},"EnvironmentEntryInput":{"title":"EnvironmentEntryInput","type":"object","properties":{"name":{"type":"string","description":"The name of the environment variable","example":"Et molestiae ut praesentium aspernatur."},"value":{"type":"string","description":"The value of the environment variable","example":"Qui in exercitationem voluptas consequatur."}},"description":"A single environment entry","example":{"name":"Quia amet voluptates eveniet quos molestiae.","value":"Sed qui quis odio iusto dolorem dolorum."},"required":["name","value"]},"EnvironmentsCreateEnvironmentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentRequestBody":{"title":"EnvironmentsCreateEnvironmentRequestBody","type":"object","properties":{"description":{"type":"string","description":"Optional description of the environment","example":"Sint porro quo."},"entries":{"type":"array","items":{"$ref":"#/definitions/EnvironmentEntryInput"},"description":"List of environment variable entries","example":[{"name":"Consequatur cum neque.","value":"Architecto nemo quasi qui libero sint."},{"name":"Consequatur cum neque.","value":"Architecto nemo quasi qui libero sint."},{"name":"Consequatur cum neque.","value":"Architecto nemo quasi qui libero sint."}]},"name":{"type":"string","description":"The name of the environment","example":"Consequatur sed repellendus numquam."},"organization_id":{"type":"string","description":"The organization ID this environment belongs to","example":"Asperiores quod eum distinctio ducimus voluptas libero."}},"example":{"description":"Et earum sed neque.","entries":[{"name":"Consequatur cum neque.","value":"Architecto nemo quasi qui libero sint."},{"name":"Consequatur cum neque.","value":"Architecto nemo quasi qui libero sint."}],"name":"Quia aspernatur ut fuga.","organization_id":"Commodi aspernatur quia sint sint animi."},"required":["organization_id","name","entries"]},"EnvironmentsCreateEnvironmentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentRequestBody":{"title":"EnvironmentsUpdateEnvironmentRequestBody","type":"object","properties":{"description":{"type":"string","description":"The description of the environment","example":"Nulla et."},"entries_to_remove":{"type":"array","items":{"type":"string","example":"Quia officiis."},"description":"List of environment entry names to remove","example":["Ad explicabo modi assumenda modi voluptas.","Quo at dolor ea hic error.","Molestias dolore aperiam maiores."]},"entries_to_update":{"type":"array","items":{"$ref":"#/definitions/EnvironmentEntryInput"},"description":"List of environment entries to update or create","example":[{"name":"Consequatur cum neque.","value":"Architecto nemo quasi qui libero sint."},{"name":"Consequatur cum neque.","value":"Architecto nemo quasi qui libero sint."}]},"name":{"type":"string","description":"The name of the environment","example":"Inventore voluptatem velit."}},"example":{"description":"Perspiciatis dolorum.","entries_to_remove":["Aut vero vitae voluptatem aspernatur.","Consequatur dolor et nihil omnis."],"entries_to_update":[{"name":"Consequatur cum neque.","value":"Architecto nemo quasi qui libero sint."},{"name":"Consequatur cum neque.","value":"Architecto nemo quasi qui libero sint."}],"name":"Qui voluptatem."},"required":["entries_to_update","entries_to_remove"]},"EnvironmentsUpdateEnvironmentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EvolveResult":{"title":"EvolveResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"ExternalOAuthServer":{"title":"ExternalOAuthServer","type":"object","properties":{"created_at":{"type":"string","description":"When the external OAuth server was created.","example":"2009-03-12T09:47:09Z","format":"date-time"},"id":{"type":"string","description":"The ID of the external OAuth server","example":"Aut vel architecto harum laboriosam deleniti."},"metadata":{"description":"The metadata for the external OAuth server","example":"Eos aspernatur ea."},"project_id":{"type":"string","description":"The project ID this external OAuth server belongs to","example":"Explicabo earum qui quibusdam reprehenderit alias enim."},"slug":{"type":"string","description":"The slug of the external OAuth server","example":"ki4","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"updated_at":{"type":"string","description":"When the external OAuth server was last updated.","example":"1997-06-23T00:41:52Z","format":"date-time"}},"example":{"created_at":"2001-02-25T21:22:30Z","id":"Occaecati facilis ipsum excepturi nobis.","metadata":"Assumenda ratione aut qui.","project_id":"Ipsam dolor et amet autem molestiae.","slug":"nsv","updated_at":"1977-12-11T12:31:27Z"},"required":["id","project_id","slug","metadata","created_at","updated_at"]},"ExternalOAuthServerForm":{"title":"ExternalOAuthServerForm","type":"object","properties":{"metadata":{"description":"The metadata for the external OAuth server","example":"Corporis unde et eveniet est corporis placeat."},"slug":{"type":"string","description":"The slug of the external OAuth server","example":"g0x","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"metadata":"Quia accusamus qui facilis.","slug":"ld0"},"required":["slug","metadata"]},"GetActiveDeploymentResult":{"title":"GetActiveDeploymentResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"GetDeploymentLogsResult":{"title":"GetDeploymentLogsResult","type":"object","properties":{"events":{"type":"array","items":{"$ref":"#/definitions/DeploymentLogEvent"},"description":"The logs for the deployment","example":[{"attachment_id":"Velit voluptatem quia accusantium ea eos quis.","attachment_type":"Inventore sint repudiandae eos odio voluptatibus exercitationem.","created_at":"Ut natus occaecati.","event":"Facere omnis ut vel quia.","id":"Ut fugiat.","message":"A eos."},{"attachment_id":"Velit voluptatem quia accusantium ea eos quis.","attachment_type":"Inventore sint repudiandae eos odio voluptatibus exercitationem.","created_at":"Ut natus occaecati.","event":"Facere omnis ut vel quia.","id":"Ut fugiat.","message":"A eos."},{"attachment_id":"Velit voluptatem quia accusantium ea eos quis.","attachment_type":"Inventore sint repudiandae eos odio voluptatibus exercitationem.","created_at":"Ut natus occaecati.","event":"Facere omnis ut vel quia.","id":"Ut fugiat.","message":"A eos."},{"attachment_id":"Velit voluptatem quia accusantium ea eos quis.","attachment_type":"Inventore sint repudiandae eos odio voluptatibus exercitationem.","created_at":"Ut natus occaecati.","event":"Facere omnis ut vel quia.","id":"Ut fugiat.","message":"A eos."}]},"next_cursor":{"type":"string","description":"The cursor to fetch results from","example":"Qui aspernatur libero consectetur culpa est."},"status":{"type":"string","description":"The status of the deployment","example":"Quia dolore modi autem."}},"example":{"events":[{"attachment_id":"Velit voluptatem quia accusantium ea eos quis.","attachment_type":"Inventore sint repudiandae eos odio voluptatibus exercitationem.","created_at":"Ut natus occaecati.","event":"Facere omnis ut vel quia.","id":"Ut fugiat.","message":"A eos."},{"attachment_id":"Velit voluptatem quia accusantium ea eos quis.","attachment_type":"Inventore sint repudiandae eos odio voluptatibus exercitationem.","created_at":"Ut natus occaecati.","event":"Facere omnis ut vel quia.","id":"Ut fugiat.","message":"A eos."},{"attachment_id":"Velit voluptatem quia accusantium ea eos quis.","attachment_type":"Inventore sint repudiandae eos odio voluptatibus exercitationem.","created_at":"Ut natus occaecati.","event":"Facere omnis ut vel quia.","id":"Ut fugiat.","message":"A eos."},{"attachment_id":"Velit voluptatem quia accusantium ea eos quis.","attachment_type":"Inventore sint repudiandae eos odio voluptatibus exercitationem.","created_at":"Ut natus occaecati.","event":"Facere omnis ut vel quia.","id":"Ut fugiat.","message":"A eos."}],"next_cursor":"Aliquid voluptas ducimus qui ullam.","status":"Vitae incidunt ea."},"required":["events","status"]},"GetDeploymentResult":{"title":"GetDeploymentResult","type":"object","properties":{"cloned_from":{"type":"string","description":"The ID of the deployment that this deployment was cloned from.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"created_at":{"type":"string","description":"The creation date of the deployment.","example":"1987-05-16T00:40:39Z","format":"date-time"},"external_id":{"type":"string","description":"The external ID to refer to the deployment. This can be a git commit hash for example.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"external_url":{"type":"string","description":"The upstream URL a deployment can refer to. This can be a github url to a commit hash or pull request.","example":"Culpa omnis ea libero voluptates sint."},"functions_assets":{"type":"array","items":{"$ref":"#/definitions/DeploymentFunctions"},"description":"The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions.","example":[{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"},{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"},{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"},{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"}]},"functions_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":441543632865849851,"format":"int64"},"github_pr":{"type":"string","description":"The github pull request that resulted in the deployment.","example":"1234"},"github_repo":{"type":"string","description":"The github repository in the form of \"owner/repo\".","example":"speakeasyapi/gram"},"github_sha":{"type":"string","description":"The commit hash that triggered the deployment.","example":"f33e693e9e12552043bc0ec5c37f1b8a9e076161"},"id":{"type":"string","description":"The ID to of the deployment.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"idempotency_key":{"type":"string","description":"A unique identifier that will mitigate against duplicate deployments.","example":"01jqq0ajmb4qh9eppz48dejr2m"},"openapiv3_assets":{"type":"array","items":{"$ref":"#/definitions/OpenAPIv3DeploymentAsset"},"description":"The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions.","example":[{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"},{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"}]},"openapiv3_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":8729564657960479313,"format":"int64"},"organization_id":{"type":"string","description":"The ID of the organization that the deployment belongs to.","example":"Vero et autem itaque aperiam."},"packages":{"type":"array","items":{"$ref":"#/definitions/DeploymentPackage"},"description":"The packages that were deployed.","example":[{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."}]},"project_id":{"type":"string","description":"The ID of the project that the deployment belongs to.","example":"Consequatur harum possimus."},"status":{"type":"string","description":"The status of the deployment.","example":"Facilis quia dolorum nihil."},"user_id":{"type":"string","description":"The ID of the user that created the deployment.","example":"Fugit repellendus excepturi quia nesciunt natus corporis."}},"example":{"cloned_from":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","created_at":"1982-07-29T04:51:30Z","external_id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","external_url":"Vero sunt quia voluptatem est.","functions_assets":[{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"},{"asset_id":"Molestiae non.","id":"Ad ut in magnam rerum ut et.","name":"Modi ipsa iusto corrupti officia asperiores et.","runtime":"Reiciendis labore.","slug":"fqd"}],"functions_tool_count":6199169182344351428,"github_pr":"1234","github_repo":"speakeasyapi/gram","github_sha":"f33e693e9e12552043bc0ec5c37f1b8a9e076161","id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","idempotency_key":"01jqq0ajmb4qh9eppz48dejr2m","openapiv3_assets":[{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"},{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"},{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"},{"asset_id":"Rerum error velit aspernatur occaecati ea.","id":"Et tempora.","name":"Et eum harum blanditiis officia corporis ex.","slug":"g7x"}],"openapiv3_tool_count":9014585683267268484,"organization_id":"Veniam soluta odio quis sit qui.","packages":[{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."},{"id":"Soluta ipsam provident.","name":"Vitae in dolorem.","version":"Tempore quisquam."}],"project_id":"Odio eum iure voluptas.","status":"Error delectus nam laboriosam.","user_id":"Alias ex nulla consequuntur."},"required":["id","created_at","organization_id","project_id","user_id","openapiv3_assets","status","packages","openapiv3_tool_count","functions_tool_count"]},"GetInstanceResult":{"title":"GetInstanceResult","type":"object","properties":{"description":{"type":"string","description":"The description of the toolset","example":"Itaque facilis et alias accusamus."},"environment":{"$ref":"#/definitions/Environment"},"name":{"type":"string","description":"The name of the toolset","example":"Perferendis veniam molestiae culpa non."},"prompt_templates":{"type":"array","items":{"$ref":"#/definitions/PromptTemplate"},"description":"The list of prompt templates","example":[{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}]},"security_variables":{"type":"array","items":{"$ref":"#/definitions/SecurityVariable"},"description":"The security variables that are relevant to the toolset","example":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}]},"server_variables":{"type":"array","items":{"$ref":"#/definitions/ServerVariable"},"description":"The server variables that are relevant to the toolset","example":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}]},"tools":{"type":"array","items":{"$ref":"#/definitions/Tool"},"description":"The list of tools","example":[{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}}]}},"example":{"description":"Dolore ex inventore maxime qui.","environment":{"created_at":"2013-08-21T08:10:57Z","description":"Soluta qui reiciendis ipsa aliquid.","entries":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}],"id":"Doloremque itaque.","name":"Quaerat vel accusantium beatae hic.","organization_id":"Tempora repellendus adipisci nobis repellendus consequuntur.","project_id":"Dolor reiciendis culpa ipsum.","slug":"nln","updated_at":"1986-01-09T05:48:22Z"},"name":"Aspernatur pariatur esse rem voluptatum optio.","prompt_templates":[{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}],"security_variables":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}],"server_variables":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}],"tools":[{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}}]},"required":["name","tools","environment"]},"GetIntegrationResult":{"title":"GetIntegrationResult","type":"object","properties":{"integration":{"$ref":"#/definitions/Integration"}},"example":{"integration":{"package_description":"Qui dolore accusamus nihil nihil iusto.","package_description_raw":"Officia ab corporis quos soluta.","package_id":"Ea optio tempora quam.","package_image_asset_id":"Dolorem voluptatum aut.","package_keywords":["Ut est cupiditate veniam quo non.","Officia et sint.","Officiis natus sapiente neque exercitationem adipisci.","Exercitationem labore id maxime minima nihil."],"package_name":"Asperiores id.","package_summary":"Voluptatibus et blanditiis rerum voluptatem veritatis cumque.","package_title":"Et et beatae ea blanditiis maiores.","package_url":"Illo est exercitationem ut.","tool_names":["Doloremque magni.","Excepturi distinctio.","Sed placeat aperiam."],"version":"Accusamus aut adipisci iure.","version_created_at":"1976-01-04T01:05:52Z","versions":[{"created_at":"1977-07-21T04:16:29Z","version":"Ea ut ea nemo sed sit vero."},{"created_at":"1977-07-21T04:16:29Z","version":"Ea ut ea nemo sed sit vero."}]}}},"GetLatestDeploymentResult":{"title":"GetLatestDeploymentResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"GetPromptTemplateResult":{"title":"GetPromptTemplateResult","type":"object","properties":{"template":{"$ref":"#/definitions/PromptTemplate"}},"example":{"template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},"required":["template"]},"GetSlackConnectionResult":{"title":"GetSlackConnectionResult","type":"object","properties":{"created_at":{"type":"string","description":"When the toolset was created.","example":"1998-07-20T02:19:08Z","format":"date-time"},"default_toolset_slug":{"type":"string","description":"The default toolset slug for this Slack connection","example":"Qui sint omnis in dolorem maiores eos."},"slack_team_id":{"type":"string","description":"The ID of the connected Slack team","example":"Quaerat minus repellat aliquam consequatur eveniet."},"slack_team_name":{"type":"string","description":"The name of the connected Slack team","example":"Et maxime."},"updated_at":{"type":"string","description":"When the toolset was last updated.","example":"2011-10-28T17:02:15Z","format":"date-time"}},"example":{"created_at":"1991-05-08T16:52:20Z","default_toolset_slug":"Iure fugiat.","slack_team_id":"Cupiditate sed blanditiis corporis voluptatum.","slack_team_name":"Esse delectus.","updated_at":"1981-02-08T00:28:35Z"},"required":["slack_team_name","slack_team_id","default_toolset_slug","created_at","updated_at"]},"HTTPToolDefinition":{"title":"HTTPToolDefinition","type":"object","properties":{"canonical":{"$ref":"#/definitions/CanonicalToolAttributes"},"canonical_name":{"type":"string","description":"The canonical name of the tool. Will be the same as the name if there is no variation.","example":"Alias totam excepturi debitis aut veritatis veritatis."},"confirm":{"type":"string","description":"Confirmation mode for the tool","example":"Et consequatur rerum ut est magni."},"confirm_prompt":{"type":"string","description":"Prompt for the confirmation","example":"Eum nesciunt."},"created_at":{"type":"string","description":"The creation date of the tool.","example":"1994-06-26T21:35:51Z","format":"date-time"},"default_server_url":{"type":"string","description":"The default server URL for the tool","example":"Aut aut facilis fugit excepturi id doloremque."},"deployment_id":{"type":"string","description":"The ID of the deployment","example":"Molestiae ut quasi."},"description":{"type":"string","description":"Description of the tool","example":"Deleniti quis provident officiis nam."},"http_method":{"type":"string","description":"HTTP method for the request","example":"Similique tempore minima at sequi nemo."},"id":{"type":"string","description":"The ID of the tool","example":"Sed cumque minima."},"name":{"type":"string","description":"The name of the tool","example":"Libero quisquam aspernatur molestias."},"openapiv3_document_id":{"type":"string","description":"The ID of the OpenAPI v3 document","example":"Dolor eos aut et molestiae rerum."},"openapiv3_operation":{"type":"string","description":"OpenAPI v3 operation","example":"Amet ipsam consequatur fuga magnam maiores et."},"package_name":{"type":"string","description":"The name of the source package","example":"Est et natus."},"path":{"type":"string","description":"Path for the request","example":"Excepturi rem qui illum enim molestias sint."},"project_id":{"type":"string","description":"The ID of the project","example":"Aperiam doloribus cumque."},"response_filter":{"$ref":"#/definitions/ResponseFilter"},"schema":{"type":"string","description":"JSON schema for the request","example":"Quis et accusantium dolorem illum."},"schema_version":{"type":"string","description":"Version of the schema","example":"Quia eos reiciendis voluptas molestias ipsum qui."},"security":{"type":"string","description":"Security requirements for the underlying HTTP endpoint","example":"Molestiae nihil aperiam fugiat inventore."},"summarizer":{"type":"string","description":"Summarizer for the tool","example":"Porro est ratione possimus."},"summary":{"type":"string","description":"Summary of the tool","example":"Nihil recusandae animi."},"tags":{"type":"array","items":{"type":"string","example":"Libero nihil et magnam dolor esse possimus."},"description":"The tags list for this http tool","example":["Natus et eum vel vel.","Dolorem neque.","Expedita voluptatem quaerat cupiditate numquam illum."]},"tool_urn":{"type":"string","description":"The URN of this tool","example":"Distinctio sapiente pariatur et nam."},"updated_at":{"type":"string","description":"The last update date of the tool.","example":"2005-07-16T02:32:57Z","format":"date-time"},"variation":{"$ref":"#/definitions/ToolVariation"}},"description":"An HTTP tool","example":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Molestiae id sit perferendis odit.","confirm":"Et alias rerum.","confirm_prompt":"Et tempore consectetur ea necessitatibus officiis.","created_at":"1970-03-16T21:14:58Z","default_server_url":"Ratione ratione voluptatem corrupti blanditiis veritatis quia.","deployment_id":"Rerum iusto et reiciendis consequuntur mollitia.","description":"Omnis quia consequatur delectus.","http_method":"Hic rerum sit maxime quod vel.","id":"Optio animi earum.","name":"Minus totam.","openapiv3_document_id":"Id vero provident facilis facilis voluptate voluptatem.","openapiv3_operation":"Maiores inventore a atque et.","package_name":"Voluptas quis aut quo earum aut facere.","path":"Quia quia.","project_id":"Officia aperiam.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Harum pariatur nihil nisi similique harum perferendis.","schema_version":"Ea aliquam neque reiciendis omnis necessitatibus et.","security":"Veritatis dolorem quod iusto pariatur totam.","summarizer":"Maiores rerum aliquid iste similique repellendus illo.","summary":"Est ab voluptatum consequatur.","tags":["Nesciunt omnis aliquam quo.","Vero facere incidunt."],"tool_urn":"Quia quia et dolorem veniam ut.","updated_at":"1974-07-17T05:50:20Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"required":["summary","tags","http_method","path","schema","deployment_id","id","project_id","name","canonical_name","description","tool_urn","created_at","updated_at"]},"InstancesGetInstanceBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"Integration":{"title":"Integration","type":"object","properties":{"package_description":{"type":"string","example":"Aut rerum ratione similique."},"package_description_raw":{"type":"string","example":"Eveniet reprehenderit neque facere et beatae."},"package_id":{"type":"string","example":"Ut animi."},"package_image_asset_id":{"type":"string","example":"Alias est earum numquam aliquid voluptatum."},"package_keywords":{"type":"array","items":{"type":"string","example":"Omnis rerum cum."},"example":["Quis temporibus porro dolorem omnis et.","Consequatur quasi optio qui blanditiis accusantium ratione.","Eos quisquam neque facilis blanditiis.","Et distinctio."]},"package_name":{"type":"string","example":"Delectus a qui."},"package_summary":{"type":"string","example":"Dolor porro placeat et molestiae."},"package_title":{"type":"string","example":"Eum omnis."},"package_url":{"type":"string","example":"Laborum dolor ut."},"tool_names":{"type":"array","items":{"type":"string","example":"Debitis aut ut."},"example":["Atque cupiditate officia exercitationem veniam aut.","Nisi et fuga.","Quia ipsam possimus nisi placeat quia qui."]},"version":{"type":"string","description":"The latest version of the integration","example":"Porro voluptas ea harum expedita nihil illo."},"version_created_at":{"type":"string","example":"1981-07-13T00:34:29Z","format":"date-time"},"versions":{"type":"array","items":{"$ref":"#/definitions/IntegrationVersion"},"example":[{"created_at":"1977-07-21T04:16:29Z","version":"Ea ut ea nemo sed sit vero."},{"created_at":"1977-07-21T04:16:29Z","version":"Ea ut ea nemo sed sit vero."},{"created_at":"1977-07-21T04:16:29Z","version":"Ea ut ea nemo sed sit vero."},{"created_at":"1977-07-21T04:16:29Z","version":"Ea ut ea nemo sed sit vero."}]}},"example":{"package_description":"Aperiam molestiae ducimus sit animi cum eius.","package_description_raw":"Aut magni nobis illum placeat ut possimus.","package_id":"Inventore quia esse.","package_image_asset_id":"Eligendi eligendi.","package_keywords":["Veritatis consectetur.","Enim autem cumque sint provident laborum.","Praesentium et minus suscipit."],"package_name":"Eum labore provident alias porro laboriosam voluptas.","package_summary":"Voluptas odio id hic.","package_title":"Et nihil aut consequuntur fugit praesentium sit.","package_url":"Dolor perspiciatis ut aspernatur.","tool_names":["Dolorem repudiandae ut nostrum dignissimos.","Odio et.","Aut et laudantium tenetur."],"version":"Pariatur nostrum ut voluptates illo esse fuga.","version_created_at":"1995-05-15T18:37:15Z","versions":[{"created_at":"1977-07-21T04:16:29Z","version":"Ea ut ea nemo sed sit vero."},{"created_at":"1977-07-21T04:16:29Z","version":"Ea ut ea nemo sed sit vero."},{"created_at":"1977-07-21T04:16:29Z","version":"Ea ut ea nemo sed sit vero."}]},"required":["package_id","package_name","package_title","package_summary","version","version_created_at","tool_names"]},"IntegrationEntry":{"title":"IntegrationEntry","type":"object","properties":{"package_id":{"type":"string","example":"Ad sunt."},"package_image_asset_id":{"type":"string","example":"Porro eaque occaecati facere nostrum itaque mollitia."},"package_keywords":{"type":"array","items":{"type":"string","example":"Qui architecto quos."},"example":["Omnis aliquam.","Tempore autem quis blanditiis."]},"package_name":{"type":"string","example":"Corrupti atque nesciunt."},"package_summary":{"type":"string","example":"Et accusantium mollitia fugiat id dolore."},"package_title":{"type":"string","example":"Accusamus rerum."},"package_url":{"type":"string","example":"Nihil corrupti esse tenetur."},"tool_names":{"type":"array","items":{"type":"string","example":"Corrupti blanditiis."},"example":["Libero velit aut autem ullam.","Molestiae omnis pariatur mollitia et.","Labore sapiente deleniti tenetur non optio.","Perspiciatis repellat vero nam consequatur quia culpa."]},"version":{"type":"string","example":"Quis quidem beatae necessitatibus."},"version_created_at":{"type":"string","example":"1988-08-18T16:16:31Z","format":"date-time"}},"example":{"package_id":"Aut excepturi.","package_image_asset_id":"Nihil voluptatem quibusdam et molestiae amet.","package_keywords":["Ipsam voluptatibus.","Et similique soluta."],"package_name":"Nostrum quisquam reprehenderit qui molestiae quos.","package_summary":"Ut tenetur.","package_title":"Dicta dolor.","package_url":"Eos possimus.","tool_names":["Dicta qui sunt velit omnis perferendis.","Ea facere nesciunt dolores enim nihil.","Et ipsa esse quasi ut."],"version":"Facilis voluptatem quibusdam unde minus velit et.","version_created_at":"1988-12-19T09:29:20Z"},"required":["package_id","package_name","version","version_created_at","tool_names"]},"IntegrationVersion":{"title":"IntegrationVersion","type":"object","properties":{"created_at":{"type":"string","example":"1976-09-01T02:09:25Z","format":"date-time"},"version":{"type":"string","example":"At voluptas a dolorum numquam."}},"example":{"created_at":"1988-04-04T13:44:21Z","version":"Consequatur nobis dicta sequi corporis."},"required":["version","created_at"]},"IntegrationsGetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"Key":{"title":"Key","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the key.","example":"2000-09-26T12:49:38Z","format":"date-time"},"created_by_user_id":{"type":"string","description":"The ID of the user who created this key","example":"Delectus quae atque suscipit sequi soluta."},"id":{"type":"string","description":"The ID of the key","example":"Aut enim non iure dolores et impedit."},"key":{"type":"string","description":"The token of the api key (only returned on key creation)","example":"Asperiores et necessitatibus totam tenetur velit."},"key_prefix":{"type":"string","description":"The store prefix of the api key for recognition","example":"Dignissimos molestiae nihil."},"name":{"type":"string","description":"The name of the key","example":"Veritatis quia ullam atque."},"organization_id":{"type":"string","description":"The organization ID this key belongs to","example":"Eveniet alias est exercitationem corporis voluptas."},"project_id":{"type":"string","description":"The optional project ID this key is scoped to","example":"Exercitationem vel et aut."},"scopes":{"type":"array","items":{"type":"string","example":"Aut optio optio omnis et ut enim."},"description":"List of permission scopes for this key","example":["Sapiente sed aliquam veritatis neque qui exercitationem.","Architecto molestias dolores voluptatem doloribus vel.","Voluptatem laudantium et sit reiciendis placeat ut.","Consequatur iusto nesciunt aut enim accusamus eius."]},"updated_at":{"type":"string","description":"When the key was last updated.","example":"1978-01-26T00:31:43Z","format":"date-time"}},"example":{"created_at":"1992-02-01T03:53:24Z","created_by_user_id":"Blanditiis rerum incidunt et.","id":"Ipsam provident.","key":"Quae dolore voluptas alias hic dolor.","key_prefix":"Quo perspiciatis.","name":"Beatae quis tenetur aperiam eos aperiam autem.","organization_id":"Odio et repellendus.","project_id":"Consequatur sed quia occaecati at dolor.","scopes":["Aut autem.","Molestiae inventore officiis amet et ut sapiente."],"updated_at":"1976-12-15T08:22:10Z"},"required":["id","organization_id","created_by_user_id","name","key_prefix","scopes","created_at","updated_at"]},"KeysCreateKeyBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyRequestBody":{"title":"KeysCreateKeyRequestBody","type":"object","properties":{"name":{"type":"string","description":"The name of the key","example":"Nihil officiis."},"scopes":{"type":"array","items":{"type":"string","example":"Quia qui veniam earum occaecati id corrupti."},"description":"The scopes of the key that determines its permissions.","example":["Nostrum similique porro."],"minItems":1}},"example":{"name":"Ut quo est reprehenderit ut.","scopes":["Quaerat veritatis aut.","Aut quasi nostrum et.","Eos quasi."]},"required":["name","scopes"]},"KeysCreateKeyUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ListAssetsResult":{"title":"ListAssetsResult","type":"object","properties":{"assets":{"type":"array","items":{"$ref":"#/definitions/Asset"},"description":"The list of assets","example":[{"content_length":7034713796615647979,"content_type":"Iure aut.","created_at":"2004-10-04T04:44:01Z","id":"Omnis corporis ex tenetur distinctio.","kind":"image","sha256":"Nihil vel est ea debitis ex.","updated_at":"1970-02-28T13:05:31Z"},{"content_length":7034713796615647979,"content_type":"Iure aut.","created_at":"2004-10-04T04:44:01Z","id":"Omnis corporis ex tenetur distinctio.","kind":"image","sha256":"Nihil vel est ea debitis ex.","updated_at":"1970-02-28T13:05:31Z"},{"content_length":7034713796615647979,"content_type":"Iure aut.","created_at":"2004-10-04T04:44:01Z","id":"Omnis corporis ex tenetur distinctio.","kind":"image","sha256":"Nihil vel est ea debitis ex.","updated_at":"1970-02-28T13:05:31Z"}]}},"example":{"assets":[{"content_length":7034713796615647979,"content_type":"Iure aut.","created_at":"2004-10-04T04:44:01Z","id":"Omnis corporis ex tenetur distinctio.","kind":"image","sha256":"Nihil vel est ea debitis ex.","updated_at":"1970-02-28T13:05:31Z"},{"content_length":7034713796615647979,"content_type":"Iure aut.","created_at":"2004-10-04T04:44:01Z","id":"Omnis corporis ex tenetur distinctio.","kind":"image","sha256":"Nihil vel est ea debitis ex.","updated_at":"1970-02-28T13:05:31Z"},{"content_length":7034713796615647979,"content_type":"Iure aut.","created_at":"2004-10-04T04:44:01Z","id":"Omnis corporis ex tenetur distinctio.","kind":"image","sha256":"Nihil vel est ea debitis ex.","updated_at":"1970-02-28T13:05:31Z"}]},"required":["assets"]},"ListChatsResult":{"title":"ListChatsResult","type":"object","properties":{"chats":{"type":"array","items":{"$ref":"#/definitions/ChatOverview"},"description":"The list of chats","example":[{"created_at":"1979-03-30T12:34:54Z","id":"Mollitia ratione dolore odio.","num_messages":8348192860018684335,"title":"Aliquid quis quo eaque sint.","updated_at":"2008-12-22T02:25:55Z","user_id":"Quo tenetur."},{"created_at":"1979-03-30T12:34:54Z","id":"Mollitia ratione dolore odio.","num_messages":8348192860018684335,"title":"Aliquid quis quo eaque sint.","updated_at":"2008-12-22T02:25:55Z","user_id":"Quo tenetur."},{"created_at":"1979-03-30T12:34:54Z","id":"Mollitia ratione dolore odio.","num_messages":8348192860018684335,"title":"Aliquid quis quo eaque sint.","updated_at":"2008-12-22T02:25:55Z","user_id":"Quo tenetur."}]}},"example":{"chats":[{"created_at":"1979-03-30T12:34:54Z","id":"Mollitia ratione dolore odio.","num_messages":8348192860018684335,"title":"Aliquid quis quo eaque sint.","updated_at":"2008-12-22T02:25:55Z","user_id":"Quo tenetur."},{"created_at":"1979-03-30T12:34:54Z","id":"Mollitia ratione dolore odio.","num_messages":8348192860018684335,"title":"Aliquid quis quo eaque sint.","updated_at":"2008-12-22T02:25:55Z","user_id":"Quo tenetur."},{"created_at":"1979-03-30T12:34:54Z","id":"Mollitia ratione dolore odio.","num_messages":8348192860018684335,"title":"Aliquid quis quo eaque sint.","updated_at":"2008-12-22T02:25:55Z","user_id":"Quo tenetur."}]},"required":["chats"]},"ListDeploymentResult":{"title":"ListDeploymentResult","type":"object","properties":{"items":{"type":"array","items":{"$ref":"#/definitions/DeploymentSummary"},"description":"A list of deployments","example":[{"created_at":"1988-07-26T22:57:27Z","functions_asset_count":3363887023128515012,"functions_tool_count":4015648503502208550,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":6776476714006962122,"openapiv3_tool_count":174755565363657734,"status":"Vitae exercitationem non aut.","user_id":"Itaque facilis."},{"created_at":"1988-07-26T22:57:27Z","functions_asset_count":3363887023128515012,"functions_tool_count":4015648503502208550,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":6776476714006962122,"openapiv3_tool_count":174755565363657734,"status":"Vitae exercitationem non aut.","user_id":"Itaque facilis."}]},"next_cursor":{"type":"string","description":"The cursor to fetch results from","example":"01jp3f054qc02gbcmpp0qmyzed"}},"example":{"items":[{"created_at":"1988-07-26T22:57:27Z","functions_asset_count":3363887023128515012,"functions_tool_count":4015648503502208550,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":6776476714006962122,"openapiv3_tool_count":174755565363657734,"status":"Vitae exercitationem non aut.","user_id":"Itaque facilis."},{"created_at":"1988-07-26T22:57:27Z","functions_asset_count":3363887023128515012,"functions_tool_count":4015648503502208550,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":6776476714006962122,"openapiv3_tool_count":174755565363657734,"status":"Vitae exercitationem non aut.","user_id":"Itaque facilis."},{"created_at":"1988-07-26T22:57:27Z","functions_asset_count":3363887023128515012,"functions_tool_count":4015648503502208550,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":6776476714006962122,"openapiv3_tool_count":174755565363657734,"status":"Vitae exercitationem non aut.","user_id":"Itaque facilis."}],"next_cursor":"01jp3f054qc02gbcmpp0qmyzed"},"required":["items"]},"ListEnvironmentsResult":{"title":"ListEnvironmentsResult","type":"object","properties":{"environments":{"type":"array","items":{"$ref":"#/definitions/Environment"},"example":[{"created_at":"2013-08-21T08:10:57Z","description":"Soluta qui reiciendis ipsa aliquid.","entries":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}],"id":"Doloremque itaque.","name":"Quaerat vel accusantium beatae hic.","organization_id":"Tempora repellendus adipisci nobis repellendus consequuntur.","project_id":"Dolor reiciendis culpa ipsum.","slug":"nln","updated_at":"1986-01-09T05:48:22Z"},{"created_at":"2013-08-21T08:10:57Z","description":"Soluta qui reiciendis ipsa aliquid.","entries":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}],"id":"Doloremque itaque.","name":"Quaerat vel accusantium beatae hic.","organization_id":"Tempora repellendus adipisci nobis repellendus consequuntur.","project_id":"Dolor reiciendis culpa ipsum.","slug":"nln","updated_at":"1986-01-09T05:48:22Z"},{"created_at":"2013-08-21T08:10:57Z","description":"Soluta qui reiciendis ipsa aliquid.","entries":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}],"id":"Doloremque itaque.","name":"Quaerat vel accusantium beatae hic.","organization_id":"Tempora repellendus adipisci nobis repellendus consequuntur.","project_id":"Dolor reiciendis culpa ipsum.","slug":"nln","updated_at":"1986-01-09T05:48:22Z"},{"created_at":"2013-08-21T08:10:57Z","description":"Soluta qui reiciendis ipsa aliquid.","entries":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}],"id":"Doloremque itaque.","name":"Quaerat vel accusantium beatae hic.","organization_id":"Tempora repellendus adipisci nobis repellendus consequuntur.","project_id":"Dolor reiciendis culpa ipsum.","slug":"nln","updated_at":"1986-01-09T05:48:22Z"}]}},"example":{"environments":[{"created_at":"2013-08-21T08:10:57Z","description":"Soluta qui reiciendis ipsa aliquid.","entries":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}],"id":"Doloremque itaque.","name":"Quaerat vel accusantium beatae hic.","organization_id":"Tempora repellendus adipisci nobis repellendus consequuntur.","project_id":"Dolor reiciendis culpa ipsum.","slug":"nln","updated_at":"1986-01-09T05:48:22Z"},{"created_at":"2013-08-21T08:10:57Z","description":"Soluta qui reiciendis ipsa aliquid.","entries":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}],"id":"Doloremque itaque.","name":"Quaerat vel accusantium beatae hic.","organization_id":"Tempora repellendus adipisci nobis repellendus consequuntur.","project_id":"Dolor reiciendis culpa ipsum.","slug":"nln","updated_at":"1986-01-09T05:48:22Z"},{"created_at":"2013-08-21T08:10:57Z","description":"Soluta qui reiciendis ipsa aliquid.","entries":[{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."},{"created_at":"1978-06-06T14:13:47Z","name":"Atque accusamus illum aut.","updated_at":"1981-03-07T05:10:18Z","value":"Voluptas aut culpa nobis fuga quibusdam."}],"id":"Doloremque itaque.","name":"Quaerat vel accusantium beatae hic.","organization_id":"Tempora repellendus adipisci nobis repellendus consequuntur.","project_id":"Dolor reiciendis culpa ipsum.","slug":"nln","updated_at":"1986-01-09T05:48:22Z"}]},"required":["environments"]},"ListIntegrationsResult":{"title":"ListIntegrationsResult","type":"object","properties":{"integrations":{"type":"array","items":{"$ref":"#/definitions/IntegrationEntry"},"description":"List of available third-party integrations","example":[{"package_id":"Non rem exercitationem inventore enim consequatur.","package_image_asset_id":"Nihil vel.","package_keywords":["Assumenda sit cumque.","Molestiae in harum."],"package_name":"Saepe dolores neque est sed inventore dolorum.","package_summary":"Molestiae iure veniam.","package_title":"Quae asperiores.","package_url":"Error dolorum quis sed harum voluptatem perspiciatis.","tool_names":["Repellendus libero rerum sint.","Dolore recusandae amet qui illum ea in."],"version":"Debitis veritatis aliquam porro consequuntur provident voluptatem.","version_created_at":"2001-01-16T11:07:39Z"},{"package_id":"Non rem exercitationem inventore enim consequatur.","package_image_asset_id":"Nihil vel.","package_keywords":["Assumenda sit cumque.","Molestiae in harum."],"package_name":"Saepe dolores neque est sed inventore dolorum.","package_summary":"Molestiae iure veniam.","package_title":"Quae asperiores.","package_url":"Error dolorum quis sed harum voluptatem perspiciatis.","tool_names":["Repellendus libero rerum sint.","Dolore recusandae amet qui illum ea in."],"version":"Debitis veritatis aliquam porro consequuntur provident voluptatem.","version_created_at":"2001-01-16T11:07:39Z"},{"package_id":"Non rem exercitationem inventore enim consequatur.","package_image_asset_id":"Nihil vel.","package_keywords":["Assumenda sit cumque.","Molestiae in harum."],"package_name":"Saepe dolores neque est sed inventore dolorum.","package_summary":"Molestiae iure veniam.","package_title":"Quae asperiores.","package_url":"Error dolorum quis sed harum voluptatem perspiciatis.","tool_names":["Repellendus libero rerum sint.","Dolore recusandae amet qui illum ea in."],"version":"Debitis veritatis aliquam porro consequuntur provident voluptatem.","version_created_at":"2001-01-16T11:07:39Z"},{"package_id":"Non rem exercitationem inventore enim consequatur.","package_image_asset_id":"Nihil vel.","package_keywords":["Assumenda sit cumque.","Molestiae in harum."],"package_name":"Saepe dolores neque est sed inventore dolorum.","package_summary":"Molestiae iure veniam.","package_title":"Quae asperiores.","package_url":"Error dolorum quis sed harum voluptatem perspiciatis.","tool_names":["Repellendus libero rerum sint.","Dolore recusandae amet qui illum ea in."],"version":"Debitis veritatis aliquam porro consequuntur provident voluptatem.","version_created_at":"2001-01-16T11:07:39Z"}]}},"example":{"integrations":[{"package_id":"Non rem exercitationem inventore enim consequatur.","package_image_asset_id":"Nihil vel.","package_keywords":["Assumenda sit cumque.","Molestiae in harum."],"package_name":"Saepe dolores neque est sed inventore dolorum.","package_summary":"Molestiae iure veniam.","package_title":"Quae asperiores.","package_url":"Error dolorum quis sed harum voluptatem perspiciatis.","tool_names":["Repellendus libero rerum sint.","Dolore recusandae amet qui illum ea in."],"version":"Debitis veritatis aliquam porro consequuntur provident voluptatem.","version_created_at":"2001-01-16T11:07:39Z"},{"package_id":"Non rem exercitationem inventore enim consequatur.","package_image_asset_id":"Nihil vel.","package_keywords":["Assumenda sit cumque.","Molestiae in harum."],"package_name":"Saepe dolores neque est sed inventore dolorum.","package_summary":"Molestiae iure veniam.","package_title":"Quae asperiores.","package_url":"Error dolorum quis sed harum voluptatem perspiciatis.","tool_names":["Repellendus libero rerum sint.","Dolore recusandae amet qui illum ea in."],"version":"Debitis veritatis aliquam porro consequuntur provident voluptatem.","version_created_at":"2001-01-16T11:07:39Z"},{"package_id":"Non rem exercitationem inventore enim consequatur.","package_image_asset_id":"Nihil vel.","package_keywords":["Assumenda sit cumque.","Molestiae in harum."],"package_name":"Saepe dolores neque est sed inventore dolorum.","package_summary":"Molestiae iure veniam.","package_title":"Quae asperiores.","package_url":"Error dolorum quis sed harum voluptatem perspiciatis.","tool_names":["Repellendus libero rerum sint.","Dolore recusandae amet qui illum ea in."],"version":"Debitis veritatis aliquam porro consequuntur provident voluptatem.","version_created_at":"2001-01-16T11:07:39Z"},{"package_id":"Non rem exercitationem inventore enim consequatur.","package_image_asset_id":"Nihil vel.","package_keywords":["Assumenda sit cumque.","Molestiae in harum."],"package_name":"Saepe dolores neque est sed inventore dolorum.","package_summary":"Molestiae iure veniam.","package_title":"Quae asperiores.","package_url":"Error dolorum quis sed harum voluptatem perspiciatis.","tool_names":["Repellendus libero rerum sint.","Dolore recusandae amet qui illum ea in."],"version":"Debitis veritatis aliquam porro consequuntur provident voluptatem.","version_created_at":"2001-01-16T11:07:39Z"}]}},"ListKeysResult":{"title":"ListKeysResult","type":"object","properties":{"keys":{"type":"array","items":{"$ref":"#/definitions/Key"},"example":[{"created_at":"2014-12-23T21:21:47Z","created_by_user_id":"Et nihil enim molestiae consequuntur officiis sed.","id":"Ut tempora.","key":"Omnis ut itaque alias.","key_prefix":"Et sapiente temporibus possimus.","name":"Sit quis.","organization_id":"Veniam esse soluta beatae qui esse.","project_id":"Officiis quis aut minus sapiente.","scopes":["Aperiam reprehenderit asperiores culpa voluptate qui molestiae.","Est quia esse quos voluptas dolores sit.","Enim corrupti."],"updated_at":"2011-06-18T15:46:47Z"},{"created_at":"2014-12-23T21:21:47Z","created_by_user_id":"Et nihil enim molestiae consequuntur officiis sed.","id":"Ut tempora.","key":"Omnis ut itaque alias.","key_prefix":"Et sapiente temporibus possimus.","name":"Sit quis.","organization_id":"Veniam esse soluta beatae qui esse.","project_id":"Officiis quis aut minus sapiente.","scopes":["Aperiam reprehenderit asperiores culpa voluptate qui molestiae.","Est quia esse quos voluptas dolores sit.","Enim corrupti."],"updated_at":"2011-06-18T15:46:47Z"}]}},"example":{"keys":[{"created_at":"2014-12-23T21:21:47Z","created_by_user_id":"Et nihil enim molestiae consequuntur officiis sed.","id":"Ut tempora.","key":"Omnis ut itaque alias.","key_prefix":"Et sapiente temporibus possimus.","name":"Sit quis.","organization_id":"Veniam esse soluta beatae qui esse.","project_id":"Officiis quis aut minus sapiente.","scopes":["Aperiam reprehenderit asperiores culpa voluptate qui molestiae.","Est quia esse quos voluptas dolores sit.","Enim corrupti."],"updated_at":"2011-06-18T15:46:47Z"},{"created_at":"2014-12-23T21:21:47Z","created_by_user_id":"Et nihil enim molestiae consequuntur officiis sed.","id":"Ut tempora.","key":"Omnis ut itaque alias.","key_prefix":"Et sapiente temporibus possimus.","name":"Sit quis.","organization_id":"Veniam esse soluta beatae qui esse.","project_id":"Officiis quis aut minus sapiente.","scopes":["Aperiam reprehenderit asperiores culpa voluptate qui molestiae.","Est quia esse quos voluptas dolores sit.","Enim corrupti."],"updated_at":"2011-06-18T15:46:47Z"},{"created_at":"2014-12-23T21:21:47Z","created_by_user_id":"Et nihil enim molestiae consequuntur officiis sed.","id":"Ut tempora.","key":"Omnis ut itaque alias.","key_prefix":"Et sapiente temporibus possimus.","name":"Sit quis.","organization_id":"Veniam esse soluta beatae qui esse.","project_id":"Officiis quis aut minus sapiente.","scopes":["Aperiam reprehenderit asperiores culpa voluptate qui molestiae.","Est quia esse quos voluptas dolores sit.","Enim corrupti."],"updated_at":"2011-06-18T15:46:47Z"},{"created_at":"2014-12-23T21:21:47Z","created_by_user_id":"Et nihil enim molestiae consequuntur officiis sed.","id":"Ut tempora.","key":"Omnis ut itaque alias.","key_prefix":"Et sapiente temporibus possimus.","name":"Sit quis.","organization_id":"Veniam esse soluta beatae qui esse.","project_id":"Officiis quis aut minus sapiente.","scopes":["Aperiam reprehenderit asperiores culpa voluptate qui molestiae.","Est quia esse quos voluptas dolores sit.","Enim corrupti."],"updated_at":"2011-06-18T15:46:47Z"}]},"required":["keys"]},"ListPackagesResult":{"title":"ListPackagesResult","type":"object","properties":{"packages":{"type":"array","items":{"$ref":"#/definitions/Package"},"description":"The list of packages","example":[{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."},{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."},{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."},{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."}]}},"example":{"packages":[{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."},{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."},{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."},{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."}]},"required":["packages"]},"ListProjectsResult":{"title":"ListProjectsResult","type":"object","properties":{"projects":{"type":"array","items":{"$ref":"#/definitions/ProjectEntry"},"description":"The list of projects","example":[{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"}]}},"example":{"projects":[{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"}]},"required":["projects"]},"ListPromptTemplatesResult":{"title":"ListPromptTemplatesResult","type":"object","properties":{"templates":{"type":"array","items":{"$ref":"#/definitions/PromptTemplate"},"description":"The created prompt template","example":[{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}]}},"example":{"templates":[{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}]},"required":["templates"]},"ListToolsResult":{"title":"ListToolsResult","type":"object","properties":{"next_cursor":{"type":"string","description":"The cursor to fetch results from","example":"Id deleniti vero quibusdam est nemo."},"tools":{"type":"array","items":{"$ref":"#/definitions/Tool"},"description":"The list of tools (polymorphic union of HTTP tools and prompt templates)","example":[{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}}]}},"example":{"next_cursor":"Nobis odio at repellendus fugiat totam.","tools":[{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}}]},"required":["tools"]},"ListToolsetsResult":{"title":"ListToolsetsResult","type":"object","properties":{"toolsets":{"type":"array","items":{"$ref":"#/definitions/ToolsetEntry"},"description":"The list of toolsets","example":[{"created_at":"2008-08-24T22:16:28Z","custom_domain_id":"Error quia.","default_environment_slug":"dvo","description":"Ullam suscipit.","id":"Sed earum.","mcp_enabled":true,"mcp_is_public":true,"mcp_slug":"7zf","name":"Et aut dolorum.","organization_id":"Labore quo quos dolores exercitationem quis est.","project_id":"Aut sint aliquid.","prompt_templates":[{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"}],"security_variables":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}],"server_variables":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}],"slug":"xi7","tool_urns":["Impedit dolores ut fugiat voluptas ut.","Dicta aut.","Tempora harum.","Aspernatur asperiores enim repellendus."],"tools":[{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"}],"updated_at":"1989-05-12T12:09:33Z"},{"created_at":"2008-08-24T22:16:28Z","custom_domain_id":"Error quia.","default_environment_slug":"dvo","description":"Ullam suscipit.","id":"Sed earum.","mcp_enabled":true,"mcp_is_public":true,"mcp_slug":"7zf","name":"Et aut dolorum.","organization_id":"Labore quo quos dolores exercitationem quis est.","project_id":"Aut sint aliquid.","prompt_templates":[{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"}],"security_variables":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}],"server_variables":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}],"slug":"xi7","tool_urns":["Impedit dolores ut fugiat voluptas ut.","Dicta aut.","Tempora harum.","Aspernatur asperiores enim repellendus."],"tools":[{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"}],"updated_at":"1989-05-12T12:09:33Z"}]}},"example":{"toolsets":[{"created_at":"2008-08-24T22:16:28Z","custom_domain_id":"Error quia.","default_environment_slug":"dvo","description":"Ullam suscipit.","id":"Sed earum.","mcp_enabled":true,"mcp_is_public":true,"mcp_slug":"7zf","name":"Et aut dolorum.","organization_id":"Labore quo quos dolores exercitationem quis est.","project_id":"Aut sint aliquid.","prompt_templates":[{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"}],"security_variables":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}],"server_variables":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}],"slug":"xi7","tool_urns":["Impedit dolores ut fugiat voluptas ut.","Dicta aut.","Tempora harum.","Aspernatur asperiores enim repellendus."],"tools":[{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"}],"updated_at":"1989-05-12T12:09:33Z"},{"created_at":"2008-08-24T22:16:28Z","custom_domain_id":"Error quia.","default_environment_slug":"dvo","description":"Ullam suscipit.","id":"Sed earum.","mcp_enabled":true,"mcp_is_public":true,"mcp_slug":"7zf","name":"Et aut dolorum.","organization_id":"Labore quo quos dolores exercitationem quis est.","project_id":"Aut sint aliquid.","prompt_templates":[{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"}],"security_variables":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}],"server_variables":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}],"slug":"xi7","tool_urns":["Impedit dolores ut fugiat voluptas ut.","Dicta aut.","Tempora harum.","Aspernatur asperiores enim repellendus."],"tools":[{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"}],"updated_at":"1989-05-12T12:09:33Z"},{"created_at":"2008-08-24T22:16:28Z","custom_domain_id":"Error quia.","default_environment_slug":"dvo","description":"Ullam suscipit.","id":"Sed earum.","mcp_enabled":true,"mcp_is_public":true,"mcp_slug":"7zf","name":"Et aut dolorum.","organization_id":"Labore quo quos dolores exercitationem quis est.","project_id":"Aut sint aliquid.","prompt_templates":[{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"}],"security_variables":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}],"server_variables":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}],"slug":"xi7","tool_urns":["Impedit dolores ut fugiat voluptas ut.","Dicta aut.","Tempora harum.","Aspernatur asperiores enim repellendus."],"tools":[{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"}],"updated_at":"1989-05-12T12:09:33Z"}]},"required":["toolsets"]},"ListVariationsResult":{"title":"ListVariationsResult","type":"object","properties":{"variations":{"type":"array","items":{"$ref":"#/definitions/ToolVariation"},"example":[{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."},{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."},{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}]}},"example":{"variations":[{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."},{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."},{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."},{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}]},"required":["variations"]},"ListVersionsResult":{"title":"ListVersionsResult","type":"object","properties":{"package":{"$ref":"#/definitions/Package"},"versions":{"type":"array","items":{"$ref":"#/definitions/PackageVersion"},"example":[{"created_at":"2009-10-15T11:07:34Z","deployment_id":"Et vel sunt.","id":"Distinctio voluptas omnis quae enim et dicta.","package_id":"Qui amet dolorem vel laboriosam ipsa consequuntur.","semver":"Expedita repellat sed dolores perferendis.","visibility":"Cum dolorum."},{"created_at":"2009-10-15T11:07:34Z","deployment_id":"Et vel sunt.","id":"Distinctio voluptas omnis quae enim et dicta.","package_id":"Qui amet dolorem vel laboriosam ipsa consequuntur.","semver":"Expedita repellat sed dolores perferendis.","visibility":"Cum dolorum."},{"created_at":"2009-10-15T11:07:34Z","deployment_id":"Et vel sunt.","id":"Distinctio voluptas omnis quae enim et dicta.","package_id":"Qui amet dolorem vel laboriosam ipsa consequuntur.","semver":"Expedita repellat sed dolores perferendis.","visibility":"Cum dolorum."},{"created_at":"2009-10-15T11:07:34Z","deployment_id":"Et vel sunt.","id":"Distinctio voluptas omnis quae enim et dicta.","package_id":"Qui amet dolorem vel laboriosam ipsa consequuntur.","semver":"Expedita repellat sed dolores perferendis.","visibility":"Cum dolorum."}]}},"example":{"package":{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."},"versions":[{"created_at":"2009-10-15T11:07:34Z","deployment_id":"Et vel sunt.","id":"Distinctio voluptas omnis quae enim et dicta.","package_id":"Qui amet dolorem vel laboriosam ipsa consequuntur.","semver":"Expedita repellat sed dolores perferendis.","visibility":"Cum dolorum."},{"created_at":"2009-10-15T11:07:34Z","deployment_id":"Et vel sunt.","id":"Distinctio voluptas omnis quae enim et dicta.","package_id":"Qui amet dolorem vel laboriosam ipsa consequuntur.","semver":"Expedita repellat sed dolores perferendis.","visibility":"Cum dolorum."},{"created_at":"2009-10-15T11:07:34Z","deployment_id":"Et vel sunt.","id":"Distinctio voluptas omnis quae enim et dicta.","package_id":"Qui amet dolorem vel laboriosam ipsa consequuntur.","semver":"Expedita repellat sed dolores perferendis.","visibility":"Cum dolorum."},{"created_at":"2009-10-15T11:07:34Z","deployment_id":"Et vel sunt.","id":"Distinctio voluptas omnis quae enim et dicta.","package_id":"Qui amet dolorem vel laboriosam ipsa consequuntur.","semver":"Expedita repellat sed dolores perferendis.","visibility":"Cum dolorum."}]},"required":["package","versions"]},"McpMetadata":{"title":"McpMetadata","type":"object","properties":{"created_at":{"type":"string","description":"When the metadata entry was created","example":"2007-11-28T05:59:39Z","format":"date-time"},"external_documentation_url":{"type":"string","description":"A link to external documentation for the MCP install page","example":"http://strosingutkowski.info/monica_towne","format":"uri"},"id":{"type":"string","description":"The ID of the metadata record","example":"Tempora aliquid."},"logo_asset_id":{"type":"string","description":"The asset ID for the MCP install page logo","example":"65f59572-e58e-4eca-9361-7a090ba6e9f4","format":"uuid"},"toolset_id":{"type":"string","description":"The toolset associated with this install page metadata","example":"81069815-3bbb-414c-8f9a-82b0477cdc41","format":"uuid"},"updated_at":{"type":"string","description":"When the metadata entry was last updated","example":"1995-05-11T15:27:46Z","format":"date-time"}},"description":"Metadata used to configure the MCP install page.","example":{"created_at":"2015-07-02T13:51:08Z","external_documentation_url":"http://brekkekeeling.name/lew.olson","id":"Blanditiis est fugit laudantium consequuntur quasi repudiandae.","logo_asset_id":"17395669-8363-4d98-bced-51a7d93a014c","toolset_id":"08a31f63-4aa2-4d67-93b2-f555d07f70f6","updated_at":"1971-11-21T13:18:15Z"},"required":["id","toolset_id","created_at","updated_at"]},"McpMetadataGetMcpMetadataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataResponseBody":{"title":"McpMetadataGetMcpMetadataResponseBody","type":"object","properties":{"metadata":{"$ref":"#/definitions/McpMetadata"}},"example":{"metadata":{"created_at":"1995-11-23T22:27:02Z","external_documentation_url":"http://tremblay.org/richmond","id":"Consectetur consequatur vitae quia nemo facere.","logo_asset_id":"a31ba668-938c-4703-98c7-e530be314a98","toolset_id":"325358a1-b81f-49ba-b3ce-4a457fa65508","updated_at":"1982-03-13T02:59:02Z"}}},"McpMetadataGetMcpMetadataUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataRequestBody":{"title":"McpMetadataSetMcpMetadataRequestBody","type":"object","properties":{"external_documentation_url":{"type":"string","description":"A link to external documentation for the MCP install page","example":"Nesciunt aut sit."},"logo_asset_id":{"type":"string","description":"The asset ID for the MCP install page logo","example":"Quia sed officia inventore exercitationem non."},"toolset_slug":{"type":"string","description":"The slug of the toolset associated with this install page metadata","example":"nfq","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"external_documentation_url":"Qui omnis voluptatem veniam molestiae earum.","logo_asset_id":"Impedit molestias sequi.","toolset_slug":"69d"},"required":["toolset_slug"]},"McpMetadataSetMcpMetadataUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"OAuthProxyProvider":{"title":"OAuthProxyProvider","type":"object","properties":{"authorization_endpoint":{"type":"string","description":"The authorization endpoint URL","example":"Tempore atque sapiente dolores suscipit temporibus."},"created_at":{"type":"string","description":"When the OAuth proxy provider was created.","example":"1981-01-10T22:40:02Z","format":"date-time"},"grant_types_supported":{"type":"array","items":{"type":"string","example":"Accusamus consequatur voluptatem quam ut nihil."},"description":"The grant types supported by this provider","example":["Natus voluptas eos ut.","Dolorum quo.","Rerum officia dolorum consequatur quod.","Officiis repellendus cumque consequuntur in similique reiciendis."]},"id":{"type":"string","description":"The ID of the OAuth proxy provider","example":"Eius laudantium."},"scopes_supported":{"type":"array","items":{"type":"string","example":"Molestias perferendis ex ducimus natus tempora explicabo."},"description":"The OAuth scopes supported by this provider","example":["Sit maiores quia rerum.","Occaecati facilis iusto mollitia consequuntur quidem maxime."]},"slug":{"type":"string","description":"The slug of the OAuth proxy provider","example":"p9z","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"token_endpoint":{"type":"string","description":"The token endpoint URL","example":"Voluptatem rerum dolores."},"token_endpoint_auth_methods_supported":{"type":"array","items":{"type":"string","example":"Unde aut et et sit."},"description":"The token endpoint auth methods supported by this provider","example":["Sed facilis odio ipsam.","Nulla vero nihil."]},"updated_at":{"type":"string","description":"When the OAuth proxy provider was last updated.","example":"2010-06-25T15:54:40Z","format":"date-time"}},"example":{"authorization_endpoint":"Sit et necessitatibus ea nesciunt et corporis.","created_at":"1985-03-19T08:42:48Z","grant_types_supported":["Iure ex sed occaecati quibusdam sunt omnis.","Nisi libero dolores id quia.","Quisquam eaque totam at rerum et voluptas.","Voluptatem quis."],"id":"Qui fuga consequuntur eos voluptatem non atque.","scopes_supported":["Veritatis nulla nemo consequatur nihil tempore.","Saepe laborum quidem consectetur neque."],"slug":"0qb","token_endpoint":"Magnam sit ex molestiae dolorum.","token_endpoint_auth_methods_supported":["Ut et vel.","Vero quia rerum sint.","Hic aut modi.","Itaque quo."],"updated_at":"2015-06-29T10:15:55Z"},"required":["id","slug","authorization_endpoint","token_endpoint","created_at","updated_at"]},"OAuthProxyServer":{"title":"OAuthProxyServer","type":"object","properties":{"created_at":{"type":"string","description":"When the OAuth proxy server was created.","example":"2009-11-09T00:40:09Z","format":"date-time"},"id":{"type":"string","description":"The ID of the OAuth proxy server","example":"Deleniti sunt totam est."},"oauth_proxy_providers":{"type":"array","items":{"$ref":"#/definitions/OAuthProxyProvider"},"description":"The OAuth proxy providers for this server","example":[{"authorization_endpoint":"Laudantium est omnis asperiores.","created_at":"1981-01-06T12:18:09Z","grant_types_supported":["Amet recusandae cum et nesciunt reiciendis.","Sit vitae provident.","Dolore vel sunt totam assumenda ab voluptatum.","Aut quaerat quia sunt quo sed."],"id":"Ipsam corrupti.","scopes_supported":["Rerum repellat recusandae.","Non ex.","Eum neque.","Magnam non rerum ratione."],"slug":"vjt","token_endpoint":"Et natus et deleniti fugiat.","token_endpoint_auth_methods_supported":["Recusandae vero temporibus perspiciatis perferendis.","Ut illum iusto consectetur voluptas porro.","Nesciunt error sunt.","Et impedit eaque culpa quia est et."],"updated_at":"2008-09-17T17:27:28Z"},{"authorization_endpoint":"Laudantium est omnis asperiores.","created_at":"1981-01-06T12:18:09Z","grant_types_supported":["Amet recusandae cum et nesciunt reiciendis.","Sit vitae provident.","Dolore vel sunt totam assumenda ab voluptatum.","Aut quaerat quia sunt quo sed."],"id":"Ipsam corrupti.","scopes_supported":["Rerum repellat recusandae.","Non ex.","Eum neque.","Magnam non rerum ratione."],"slug":"vjt","token_endpoint":"Et natus et deleniti fugiat.","token_endpoint_auth_methods_supported":["Recusandae vero temporibus perspiciatis perferendis.","Ut illum iusto consectetur voluptas porro.","Nesciunt error sunt.","Et impedit eaque culpa quia est et."],"updated_at":"2008-09-17T17:27:28Z"},{"authorization_endpoint":"Laudantium est omnis asperiores.","created_at":"1981-01-06T12:18:09Z","grant_types_supported":["Amet recusandae cum et nesciunt reiciendis.","Sit vitae provident.","Dolore vel sunt totam assumenda ab voluptatum.","Aut quaerat quia sunt quo sed."],"id":"Ipsam corrupti.","scopes_supported":["Rerum repellat recusandae.","Non ex.","Eum neque.","Magnam non rerum ratione."],"slug":"vjt","token_endpoint":"Et natus et deleniti fugiat.","token_endpoint_auth_methods_supported":["Recusandae vero temporibus perspiciatis perferendis.","Ut illum iusto consectetur voluptas porro.","Nesciunt error sunt.","Et impedit eaque culpa quia est et."],"updated_at":"2008-09-17T17:27:28Z"}]},"project_id":{"type":"string","description":"The project ID this OAuth proxy server belongs to","example":"Vitae in laborum tempore in quis incidunt."},"slug":{"type":"string","description":"The slug of the OAuth proxy server","example":"ym4","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"updated_at":{"type":"string","description":"When the OAuth proxy server was last updated.","example":"1998-09-15T11:04:51Z","format":"date-time"}},"example":{"created_at":"2000-12-05T03:21:19Z","id":"Dolorem quidem iste ullam deleniti facere provident.","oauth_proxy_providers":[{"authorization_endpoint":"Laudantium est omnis asperiores.","created_at":"1981-01-06T12:18:09Z","grant_types_supported":["Amet recusandae cum et nesciunt reiciendis.","Sit vitae provident.","Dolore vel sunt totam assumenda ab voluptatum.","Aut quaerat quia sunt quo sed."],"id":"Ipsam corrupti.","scopes_supported":["Rerum repellat recusandae.","Non ex.","Eum neque.","Magnam non rerum ratione."],"slug":"vjt","token_endpoint":"Et natus et deleniti fugiat.","token_endpoint_auth_methods_supported":["Recusandae vero temporibus perspiciatis perferendis.","Ut illum iusto consectetur voluptas porro.","Nesciunt error sunt.","Et impedit eaque culpa quia est et."],"updated_at":"2008-09-17T17:27:28Z"},{"authorization_endpoint":"Laudantium est omnis asperiores.","created_at":"1981-01-06T12:18:09Z","grant_types_supported":["Amet recusandae cum et nesciunt reiciendis.","Sit vitae provident.","Dolore vel sunt totam assumenda ab voluptatum.","Aut quaerat quia sunt quo sed."],"id":"Ipsam corrupti.","scopes_supported":["Rerum repellat recusandae.","Non ex.","Eum neque.","Magnam non rerum ratione."],"slug":"vjt","token_endpoint":"Et natus et deleniti fugiat.","token_endpoint_auth_methods_supported":["Recusandae vero temporibus perspiciatis perferendis.","Ut illum iusto consectetur voluptas porro.","Nesciunt error sunt.","Et impedit eaque culpa quia est et."],"updated_at":"2008-09-17T17:27:28Z"}],"project_id":"Alias non.","slug":"e7i","updated_at":"1977-01-01T13:34:23Z"},"required":["id","project_id","slug","created_at","updated_at"]},"OpenAPIv3DeploymentAsset":{"title":"OpenAPIv3DeploymentAsset","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the uploaded asset.","example":"Exercitationem sapiente mollitia quis perferendis expedita."},"id":{"type":"string","description":"The ID of the deployment asset.","example":"Cumque sint et ipsam voluptatem perspiciatis."},"name":{"type":"string","description":"The name to give the document as it will be displayed in UIs.","example":"Et blanditiis aut provident."},"slug":{"type":"string","description":"The slug to give the document as it will be displayed in URLs.","example":"mqw","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"asset_id":"Sint molestias voluptatem similique expedita incidunt.","id":"Et omnis quo accusantium ut voluptatem.","name":"Totam quo.","slug":"gjp"},"required":["id","asset_id","name","slug"]},"OrganizationEntry":{"title":"OrganizationEntry","type":"object","properties":{"id":{"type":"string","example":"Rem quibusdam voluptatem nesciunt."},"name":{"type":"string","example":"Distinctio esse vel non."},"projects":{"type":"array","items":{"$ref":"#/definitions/ProjectEntry"},"example":[{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"}]},"slug":{"type":"string","example":"Velit labore."},"sso_connection_id":{"type":"string","example":"Minus beatae."},"user_workspace_slugs":{"type":"array","items":{"type":"string","example":"Veritatis laboriosam."},"example":["In voluptas sed ut.","Commodi harum omnis sed eaque.","Dolore ut ipsam.","Error placeat numquam itaque est mollitia."]}},"example":{"id":"Libero quae quod qui.","name":"Earum est distinctio itaque.","projects":[{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"},{"id":"Eos laudantium ipsa ut porro.","name":"Repudiandae iure qui itaque.","slug":"qed"}],"slug":"Aut beatae possimus omnis quia veritatis.","sso_connection_id":"Sit tenetur aut eos voluptatem.","user_workspace_slugs":["Magni id amet aut.","A nesciunt.","Excepturi reprehenderit dolor est optio ut.","Omnis quae rerum."]},"required":["id","name","slug","projects"]},"Package":{"title":"Package","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the package","example":"2001-06-10T19:56:57Z","format":"date-time"},"deleted_at":{"type":"string","description":"The deletion date of the package","example":"1977-11-06T07:36:39Z","format":"date-time"},"description":{"type":"string","description":"The description of the package. This contains HTML content.","example":"Nihil tempora magnam aliquid."},"description_raw":{"type":"string","description":"The unsanitized, user-supplied description of the package. Limited markdown syntax is supported.","example":"Odio consequatur similique nam veritatis sapiente."},"id":{"type":"string","description":"The ID of the package","example":"Voluptas quis cumque sit magni."},"image_asset_id":{"type":"string","description":"The asset ID of the image to show for this package","example":"Fuga temporibus."},"keywords":{"type":"array","items":{"type":"string","example":"Consequatur voluptatum est sed tenetur corrupti aut."},"description":"The keywords of the package","example":["Voluptas numquam qui maiores cupiditate vel itaque.","Ea ratione et.","Quaerat velit eligendi quasi optio perspiciatis vel.","Asperiores maiores sed est soluta."]},"latest_version":{"type":"string","description":"The latest version of the package","example":"Dolorum id unde qui culpa omnis."},"name":{"type":"string","description":"The name of the package","example":"Quibusdam voluptas non aut voluptatem."},"organization_id":{"type":"string","description":"The ID of the organization that owns the package","example":"Eos fugit natus architecto sit harum qui."},"project_id":{"type":"string","description":"The ID of the project that owns the package","example":"Et enim est fuga velit."},"summary":{"type":"string","description":"The summary of the package","example":"Et accusamus dignissimos quia expedita."},"title":{"type":"string","description":"The title of the package","example":"Ab tenetur."},"updated_at":{"type":"string","description":"The last update date of the package","example":"2012-04-13T20:58:45Z","format":"date-time"},"url":{"type":"string","description":"External URL for the package owner","example":"Quo reprehenderit nulla porro laborum ab."}},"example":{"created_at":"1971-05-25T23:49:13Z","deleted_at":"1990-04-26T05:21:19Z","description":"Et accusantium dolorem.","description_raw":"Eos et enim.","id":"Voluptate voluptatum nemo a distinctio.","image_asset_id":"Numquam rerum.","keywords":["Hic soluta corporis eos et ducimus delectus.","Libero facere harum molestiae porro.","Quod in eius unde corporis molestiae eligendi.","Fugit aut quia deleniti animi ullam ipsam."],"latest_version":"Labore debitis est.","name":"Deleniti corporis eligendi voluptas.","organization_id":"Amet debitis sed.","project_id":"Molestias impedit ducimus natus animi enim.","summary":"Doloribus excepturi voluptate labore.","title":"Cumque aliquam cum.","updated_at":"1991-11-19T20:32:27Z","url":"Et deleniti in sunt."},"required":["id","name","project_id","organization_id","created_at","updated_at"]},"PackageVersion":{"title":"PackageVersion","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the package version","example":"1982-11-24T14:24:48Z","format":"date-time"},"deployment_id":{"type":"string","description":"The ID of the deployment that the version belongs to","example":"Sint labore et nihil."},"id":{"type":"string","description":"The ID of the package version","example":"Quis aspernatur omnis adipisci aut vitae occaecati."},"package_id":{"type":"string","description":"The ID of the package that the version belongs to","example":"Dolore ut sit reiciendis voluptatem expedita voluptatibus."},"semver":{"type":"string","description":"The semantic version value","example":"Dolorem quae magni assumenda harum dolores suscipit."},"visibility":{"type":"string","description":"The visibility of the package version","example":"Eligendi nihil autem."}},"example":{"created_at":"1978-04-12T07:53:40Z","deployment_id":"Distinctio voluptatibus laudantium exercitationem ab itaque dolorem.","id":"Et et mollitia cupiditate et.","package_id":"Neque voluptatem.","semver":"Consequuntur vel nihil iste.","visibility":"Autem vero aliquid alias vel laborum."},"required":["id","package_id","deployment_id","visibility","semver","created_at"]},"PackagesCreatePackageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageRequestBody":{"title":"PackagesCreatePackageRequestBody","type":"object","properties":{"description":{"type":"string","description":"The description of the package. Limited markdown syntax is supported.","example":"go3","maxLength":10000},"image_asset_id":{"type":"string","description":"The asset ID of the image to show for this package","example":"rqo","maxLength":50},"keywords":{"type":"array","items":{"type":"string","example":"At in similique."},"description":"The keywords of the package","example":["Perferendis amet sed est sequi ut ut.","Ut ut dolorem sint aspernatur in voluptas.","Et sunt consequatur natus."],"maxItems":5},"name":{"type":"string","description":"The name of the package","example":"hr2","pattern":"^[a-z0-9_-]{1,128}$","maxLength":100},"summary":{"type":"string","description":"The summary of the package","example":"32a","maxLength":80},"title":{"type":"string","description":"The title of the package","example":"c3n","maxLength":100},"url":{"type":"string","description":"External URL for the package owner","example":"l7h","maxLength":100}},"example":{"description":"ix4","image_asset_id":"dzv","keywords":["Alias inventore.","Consequuntur aspernatur voluptas non quos.","Voluptatem dolores aut aut officiis."],"name":"y85","summary":"x9m","title":"t8b","url":"zr0"},"required":["name","title","summary"]},"PackagesCreatePackageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishRequestBody":{"title":"PackagesPublishRequestBody","type":"object","properties":{"deployment_id":{"type":"string","description":"The deployment ID to associate with the package version","example":"Qui odit nihil minus fugiat."},"name":{"type":"string","description":"The name of the package","example":"Qui iste officia omnis saepe qui."},"version":{"type":"string","description":"The new semantic version of the package to publish","example":"Vero quod omnis eos aliquid quidem."},"visibility":{"type":"string","description":"The visibility of the package version","example":"public","enum":["public","private"]}},"example":{"deployment_id":"Iure voluptate laborum qui laborum quia.","name":"Temporibus at et.","version":"Voluptas aut aut sapiente non nisi ut.","visibility":"private"},"required":["name","version","deployment_id","visibility"]},"PackagesPublishUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageNotModifiedResponseBody":{"title":"PackagesUpdatePackageNotModifiedResponseBody","type":"object","properties":{"location":{"type":"string","example":"Culpa aspernatur sint cum."}},"example":{"location":"Laborum vero cumque hic et enim."},"required":["location"]},"PackagesUpdatePackageRequestBody":{"title":"PackagesUpdatePackageRequestBody","type":"object","properties":{"description":{"type":"string","description":"The description of the package. Limited markdown syntax is supported.","example":"36t","maxLength":10000},"id":{"type":"string","description":"The id of the package to update","example":"gm3","maxLength":50},"image_asset_id":{"type":"string","description":"The asset ID of the image to show for this package","example":"9ud","maxLength":50},"keywords":{"type":"array","items":{"type":"string","example":"Aliquid nulla eius iusto omnis sed pariatur."},"description":"The keywords of the package","example":["Reprehenderit ut.","Eum ducimus.","Ut atque sit."],"maxItems":5},"summary":{"type":"string","description":"The summary of the package","example":"c5j","maxLength":80},"title":{"type":"string","description":"The title of the package","example":"h4q","maxLength":100},"url":{"type":"string","description":"External URL for the package owner","example":"m45","maxLength":100}},"example":{"description":"17a","id":"dm4","image_asset_id":"hzk","keywords":["Ab est et deleniti et maxime eum.","Illo sequi rerum facere saepe consequatur.","Qui laudantium."],"summary":"ooq","title":"2yr","url":"jdm"},"required":["id"]},"PackagesUpdatePackageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PeriodUsage":{"title":"PeriodUsage","type":"object","properties":{"actual_enabled_server_count":{"type":"integer","description":"The number of servers enabled at the time of the request","example":546401138555646205,"format":"int64"},"max_servers":{"type":"integer","description":"The maximum number of servers allowed","example":7012062145934179153,"format":"int64"},"max_tool_calls":{"type":"integer","description":"The maximum number of tool calls allowed","example":1373272084619082936,"format":"int64"},"servers":{"type":"integer","description":"The number of servers used, according to the Polar meter","example":6773291991572341423,"format":"int64"},"tool_calls":{"type":"integer","description":"The number of tool calls used","example":6217606402574611016,"format":"int64"}},"example":{"actual_enabled_server_count":8681864866897693180,"max_servers":784997349142132400,"max_tool_calls":6213639332351125209,"servers":3482642671500466518,"tool_calls":7954082016211076474},"required":["tool_calls","max_tool_calls","servers","max_servers","actual_enabled_server_count"]},"Project":{"title":"Project","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the project.","example":"2009-12-24T23:58:02Z","format":"date-time"},"id":{"type":"string","description":"The ID of the project","example":"Quia asperiores qui."},"logo_asset_id":{"type":"string","description":"The ID of the logo asset for the project","example":"Minima numquam."},"name":{"type":"string","description":"The name of the project","example":"Nulla fugiat accusantium blanditiis ut et eveniet."},"organization_id":{"type":"string","description":"The ID of the organization that owns the project","example":"Quidem placeat porro ut quod itaque ea."},"slug":{"type":"string","description":"The slug of the project","example":"6jq","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"updated_at":{"type":"string","description":"The last update date of the project.","example":"1974-12-27T09:56:18Z","format":"date-time"}},"example":{"created_at":"2006-04-24T22:44:29Z","id":"Asperiores quidem voluptate optio et.","logo_asset_id":"Ullam necessitatibus.","name":"Saepe dolor fugit dolor delectus.","organization_id":"Et dolorem porro numquam eos.","slug":"cdc","updated_at":"2008-10-01T03:31:56Z"},"required":["id","name","slug","organization_id","created_at","updated_at"]},"ProjectEntry":{"title":"ProjectEntry","type":"object","properties":{"id":{"type":"string","description":"The ID of the project","example":"Aut veritatis et."},"name":{"type":"string","description":"The name of the project","example":"Molestiae non cum a."},"slug":{"type":"string","description":"The slug of the project","example":"6qc","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"id":"Omnis doloremque eius quisquam molestiae adipisci voluptatem.","name":"Suscipit fugit.","slug":"d36"},"required":["id","name","slug"]},"ProjectsCreateProjectBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectRequestBody":{"title":"ProjectsCreateProjectRequestBody","type":"object","properties":{"name":{"type":"string","description":"The name of the project","example":"lds","maxLength":40},"organization_id":{"type":"string","description":"The ID of the organization to create the project in","example":"Fugiat exercitationem aut ea consectetur."}},"example":{"name":"su7","organization_id":"Dicta consequatur dolor soluta."},"required":["organization_id","name"]},"ProjectsCreateProjectUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoRequestBody":{"title":"ProjectsSetLogoRequestBody","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the asset","example":"Sit eum."}},"example":{"asset_id":"Dolor voluptatum deleniti aut."},"required":["asset_id"]},"ProjectsSetLogoUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PromptTemplate":{"title":"PromptTemplate","type":"object","properties":{"canonical":{"$ref":"#/definitions/CanonicalToolAttributes"},"canonical_name":{"type":"string","description":"The canonical name of the tool. Will be the same as the name if there is no variation.","example":"Rerum libero ut quaerat doloribus qui."},"confirm":{"type":"string","description":"Confirmation mode for the tool","example":"Eligendi vitae porro rerum rerum quasi veritatis."},"confirm_prompt":{"type":"string","description":"Prompt for the confirmation","example":"Quia qui sit omnis consequatur."},"created_at":{"type":"string","description":"The creation date of the tool.","example":"2015-06-20T05:08:14Z","format":"date-time"},"description":{"type":"string","description":"Description of the tool","example":"Accusamus quia quos impedit."},"engine":{"type":"string","description":"The template engine","example":"mustache","enum":["mustache"]},"history_id":{"type":"string","description":"The revision tree ID for the prompt template","example":"Soluta alias quod vitae excepturi."},"id":{"type":"string","description":"The ID of the tool","example":"Eos similique."},"kind":{"type":"string","description":"The kind of prompt the template is used for","example":"prompt","enum":["prompt","higher_order_tool"]},"name":{"type":"string","description":"The name of the tool","example":"Temporibus voluptatem."},"predecessor_id":{"type":"string","description":"The previous version of the prompt template to use as predecessor","example":"Tempora minus fuga voluptas eos."},"project_id":{"type":"string","description":"The ID of the project","example":"Eius dolorum et adipisci."},"prompt":{"type":"string","description":"The template content","example":"In dicta."},"schema":{"type":"string","description":"JSON schema for the request","example":"Eum libero."},"schema_version":{"type":"string","description":"Version of the schema","example":"Quis culpa non iusto et."},"summarizer":{"type":"string","description":"Summarizer for the tool","example":"Possimus libero voluptatum."},"tool_urn":{"type":"string","description":"The URN of this tool","example":"Dolore soluta qui rerum voluptates."},"tools_hint":{"type":"array","items":{"type":"string","example":"Voluptatibus nobis quaerat qui."},"description":"The suggested tool names associated with the prompt template","example":["Et rem voluptatem libero commodi non.","Et sint id voluptatem adipisci perspiciatis.","Ex magni id perspiciatis ducimus hic."],"maxItems":20},"updated_at":{"type":"string","description":"The last update date of the tool.","example":"1994-07-04T21:10:44Z","format":"date-time"},"variation":{"$ref":"#/definitions/ToolVariation"}},"description":"A prompt template","example":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Nesciunt perferendis libero ducimus maxime eos deserunt.","confirm":"Et eos.","confirm_prompt":"Quia sequi voluptatum.","created_at":"2015-01-01T11:15:25Z","description":"Et et neque cum nihil.","engine":"mustache","history_id":"Veniam iusto aliquam excepturi delectus.","id":"Nihil labore nostrum qui corporis.","kind":"prompt","name":"Voluptas sed architecto alias est ut qui.","predecessor_id":"Consequatur et temporibus et.","project_id":"Reprehenderit similique minima rerum qui.","prompt":"Blanditiis praesentium est ipsam.","schema":"Illum deserunt debitis.","schema_version":"In nobis odio laboriosam illum qui commodi.","summarizer":"Enim sed quaerat et dicta accusantium ut.","tool_urn":"Aperiam laborum vel.","tools_hint":["Sed dolores est eius.","Facere dolorem nam qui corrupti.","Optio in."],"updated_at":"1991-06-02T03:08:03Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"required":["id","history_id","name","prompt","engine","kind","tools_hint","tool_urn","created_at","updated_at","project_id","canonical_name","description","schema"]},"PromptTemplateEntry":{"title":"PromptTemplateEntry","type":"object","properties":{"id":{"type":"string","description":"The ID of the prompt template","example":"Consequuntur optio aut minima."},"kind":{"type":"string","description":"The kind of the prompt template","example":"Dolorem doloremque tempore eum."},"name":{"type":"string","description":"The name of the prompt template","example":"o79","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"id":"Eius vitae nemo voluptatum ipsam sed.","kind":"Totam vero natus assumenda autem quam et.","name":"0ss"},"required":["id","name"]},"PublishPackageResult":{"title":"PublishPackageResult","type":"object","properties":{"package":{"$ref":"#/definitions/Package"},"version":{"$ref":"#/definitions/PackageVersion"}},"example":{"package":{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."},"version":{"created_at":"2009-10-15T11:07:34Z","deployment_id":"Et vel sunt.","id":"Distinctio voluptas omnis quae enim et dicta.","package_id":"Qui amet dolorem vel laboriosam ipsa consequuntur.","semver":"Expedita repellat sed dolores perferendis.","visibility":"Cum dolorum."}},"required":["package","version"]},"RedeployResult":{"title":"RedeployResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"RenderTemplateResult":{"title":"RenderTemplateResult","type":"object","properties":{"prompt":{"type":"string","description":"The rendered prompt","example":"Qui ex sit et voluptas optio."}},"example":{"prompt":"Quis quia."},"required":["prompt"]},"ResponseFilter":{"title":"ResponseFilter","type":"object","properties":{"content_types":{"type":"array","items":{"type":"string","example":"Sint sequi ratione."},"description":"Content types to filter for","example":["Facilis voluptas sint enim voluptatum.","Distinctio alias doloribus consequatur."]},"status_codes":{"type":"array","items":{"type":"string","example":"Saepe eveniet explicabo cumque fugit."},"description":"Status codes to filter for","example":["Consequatur quia culpa sed cumque.","Sint debitis voluptatem blanditiis voluptatibus qui fugit."]},"type":{"type":"string","description":"Response filter type for the tool","example":"Totam dolor voluptas."}},"description":"Response filter metadata for the tool","example":{"content_types":["Perferendis eveniet voluptate.","Corrupti quibusdam eligendi.","Rerum rerum deleniti dolorem dolores."],"status_codes":["Iusto et praesentium.","Esse in."],"type":"Eligendi odit maxime qui quis repudiandae."},"required":["type","status_codes","content_types"]},"SecurityVariable":{"title":"SecurityVariable","type":"object","properties":{"bearer_format":{"type":"string","description":"The bearer format","example":"Nemo ratione ipsum occaecati repellat distinctio tempore."},"env_variables":{"type":"array","items":{"type":"string","example":"Modi nihil incidunt enim aut unde."},"description":"The environment variables","example":["Maxime sapiente ab sunt qui quam dolorem.","Repudiandae temporibus repudiandae quae ut dolorum minima.","Ipsam dicta sit deleniti.","Eos delectus odit distinctio totam id ex."]},"in_placement":{"type":"string","description":"Where the security token is placed","example":"Hic assumenda possimus quod culpa dolorem inventore."},"name":{"type":"string","description":"The name of the security scheme","example":"Et vero qui."},"oauth_flows":{"type":"string","description":"The OAuth flows","example":"QSBwYXJpYXR1ciBxdWkgdm9sdXB0YXRlIHV0Lg==","format":"byte"},"oauth_types":{"type":"array","items":{"type":"string","example":"Qui ex ducimus sed."},"description":"The OAuth types","example":["Dignissimos cumque consectetur vel et quo.","Dignissimos tempora et.","Assumenda iusto.","Qui et."]},"scheme":{"type":"string","description":"The security scheme","example":"Nam quidem ipsam quaerat eveniet aut."},"type":{"type":"string","description":"The type of security","example":"Voluptas quia."}},"example":{"bearer_format":"Sit modi.","env_variables":["Est rem odit non sit et sapiente.","Rerum voluptas laboriosam.","Cumque minus voluptatem doloremque enim non."],"in_placement":"Blanditiis amet incidunt autem maxime aliquid sit.","name":"Veniam voluptatem quibusdam aspernatur laborum.","oauth_flows":"RG9sb3IgYWIgdG90YW0gdXQgdWxsYW0u","oauth_types":["Est perspiciatis.","Dolor alias sunt omnis.","Et saepe.","Quia quidem eos magnam ipsum incidunt est."],"scheme":"Consequatur quia impedit autem repellat in.","type":"Nemo ut aut possimus."},"required":["name","in_placement","scheme","env_variables"]},"ServerVariable":{"title":"ServerVariable","type":"object","properties":{"description":{"type":"string","description":"Description of the server variable","example":"Perferendis ipsa temporibus alias fugiat soluta."},"env_variables":{"type":"array","items":{"type":"string","example":"Recusandae vel placeat."},"description":"The environment variables","example":["Laudantium et aut consequatur iure quia.","Itaque recusandae.","Id voluptas ullam reiciendis architecto cupiditate.","Quasi in voluptas quia sit tempore ea."]}},"example":{"description":"Ipsam quae omnis blanditiis omnis quo.","env_variables":["Recusandae sed at ea enim provident.","Optio soluta aperiam.","Distinctio nemo tempore molestiae molestiae."]},"required":["description","env_variables"]},"SetProjectLogoResult":{"title":"SetProjectLogoResult","type":"object","properties":{"project":{"$ref":"#/definitions/Project"}},"example":{"project":{"created_at":"2000-03-03T01:19:45Z","id":"Natus sit porro dolor vitae.","logo_asset_id":"Fugit nesciunt saepe enim rem saepe eos.","name":"Qui dolores accusantium soluta qui.","organization_id":"Ex dolorem laboriosam iusto.","slug":"yvl","updated_at":"2004-08-29T03:31:46Z"}},"required":["project"]},"SlackCallbackBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionRequestBody":{"title":"SlackUpdateSlackConnectionRequestBody","type":"object","properties":{"default_toolset_slug":{"type":"string","description":"The default toolset slug for this Slack connection","example":"Necessitatibus animi iure earum."}},"example":{"default_toolset_slug":"Sunt porro molestiae velit fugiat inventore."},"required":["default_toolset_slug"]},"SlackUpdateSlackConnectionUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateRequestBody":{"title":"TemplatesCreateTemplateRequestBody","type":"object","properties":{"arguments":{"type":"string","description":"The JSON Schema defining the placeholders found in the prompt template","example":"{\"name\":\"example\",\"email\":\"mail@example.com\"}","format":"json"},"description":{"type":"string","description":"The description of the prompt template","example":"Omnis consequatur ipsa est possimus sunt."},"engine":{"type":"string","description":"The template engine","example":"mustache","enum":["mustache"]},"kind":{"type":"string","description":"The kind of prompt the template is used for","example":"prompt","enum":["prompt","higher_order_tool"]},"name":{"type":"string","description":"The name of the prompt template","example":"424","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"prompt":{"type":"string","description":"The template content","example":"Dolorem iusto dicta deserunt id."},"tools_hint":{"type":"array","items":{"type":"string","example":"Et impedit facilis esse ipsum aspernatur."},"description":"The suggested tool names associated with the prompt template","example":["Fugiat saepe.","Quae enim.","Aperiam vel veniam."],"maxItems":20}},"example":{"arguments":"{\"name\":\"example\",\"email\":\"mail@example.com\"}","description":"Quia non dolore.","engine":"mustache","kind":"higher_order_tool","name":"5uf","prompt":"Id quia autem incidunt.","tools_hint":["Sit adipisci sint sed sapiente et.","Voluptates reiciendis quia pariatur.","Debitis rerum mollitia tempora necessitatibus."]},"required":["name","prompt","engine","kind"]},"TemplatesCreateTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDRequestBody":{"title":"TemplatesRenderTemplateByIDRequestBody","type":"object","properties":{"arguments":{"type":"object","description":"The input data to render the template with","example":{"Voluptatem quis eos nisi iste similique impedit.":"Quod quaerat blanditiis sit magnam."},"additionalProperties":true}},"example":{"arguments":{"Atque eos.":"Qui at similique possimus dolores nihil.","Aut asperiores.":"Fugit possimus nemo praesentium."}},"required":["arguments"]},"TemplatesRenderTemplateByIDUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateRequestBody":{"title":"TemplatesRenderTemplateRequestBody","type":"object","properties":{"arguments":{"type":"object","description":"The input data to render the template with","example":{"Ducimus maiores provident.":"Rerum sunt odio ipsam nostrum.","Rerum impedit aut odio qui rerum.":"Odio quo odio nobis ad a ut."},"additionalProperties":true},"engine":{"type":"string","description":"The template engine","example":"mustache","enum":["mustache"]},"kind":{"type":"string","description":"The kind of prompt the template is used for","example":"higher_order_tool","enum":["prompt","higher_order_tool"]},"prompt":{"type":"string","description":"The template content to render","example":"Repellat id voluptas et dolorum explicabo."}},"example":{"arguments":{"In rerum quis.":"Dolorem delectus.","Qui voluptas.":"Ipsam delectus laborum.","Voluptatum natus ea corrupti ipsa nam.":"Repudiandae hic."},"engine":"mustache","kind":"higher_order_tool","prompt":"Aut facere voluptatibus odio non vel."},"required":["prompt","arguments","engine","kind"]},"TemplatesRenderTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateRequestBody":{"title":"TemplatesUpdateTemplateRequestBody","type":"object","properties":{"arguments":{"type":"string","description":"The JSON Schema defining the placeholders found in the prompt template","example":"{\"name\":\"example\",\"email\":\"mail@example.com\"}","format":"json"},"description":{"type":"string","description":"The description of the prompt template","example":"Autem et ut unde maiores qui quisquam."},"engine":{"type":"string","description":"The template engine","example":"mustache","enum":["mustache"]},"id":{"type":"string","description":"The ID of the prompt template to update","example":"Officia maiores eos nobis fuga in."},"kind":{"type":"string","description":"The kind of prompt the template is used for","example":"prompt","enum":["prompt","higher_order_tool"]},"prompt":{"type":"string","description":"The template content","example":"Nesciunt dicta."},"tools_hint":{"type":"array","items":{"type":"string","example":"Alias neque voluptatibus cupiditate nostrum."},"description":"The suggested tool names associated with the prompt template","example":["Voluptatem et.","Ad vel mollitia et.","Commodi et quia quaerat sit ut sapiente."],"maxItems":20}},"example":{"arguments":"{\"name\":\"example\",\"email\":\"mail@example.com\"}","description":"Iusto maxime.","engine":"mustache","id":"Autem ut ut voluptatem ut labore quos.","kind":"higher_order_tool","prompt":"Nihil animi officiis.","tools_hint":["Sint voluptatem pariatur enim quos eos.","Nesciunt adipisci at eius.","Delectus vero soluta suscipit quasi sequi."]},"required":["id"]},"TemplatesUpdateTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TierLimits":{"title":"TierLimits","type":"object","properties":{"add_on_bullets":{"type":"array","items":{"type":"string","example":"Impedit aperiam unde voluptas et quo explicabo."},"description":"Add-on items bullets of the tier (optional)","example":["Aut pariatur debitis quaerat.","Nihil iure sed enim et."]},"base_price":{"type":"number","description":"The base price for the tier","example":0.9102660803626755,"format":"double"},"feature_bullets":{"type":"array","items":{"type":"string","example":"Amet in eum facilis ab accusantium."},"description":"Key feature bullets of the tier","example":["Illo voluptas rerum modi animi corrupti delectus.","Error distinctio quibusdam perferendis dignissimos quam."]},"included_bullets":{"type":"array","items":{"type":"string","example":"Distinctio perspiciatis modi ipsum et sunt."},"description":"Included items bullets of the tier","example":["Exercitationem ut enim atque.","Vel reiciendis.","Aut consectetur quis."]},"included_credits":{"type":"integer","description":"The number of credits included in the tier for playground and other dashboard activities","example":8796453544014665303,"format":"int64"},"included_servers":{"type":"integer","description":"The number of servers included in the tier","example":7016774311090752,"format":"int64"},"included_tool_calls":{"type":"integer","description":"The number of tool calls included in the tier","example":285165861611100788,"format":"int64"},"price_per_additional_credit":{"type":"number","description":"The price per additional credit","example":0.36544575438213905,"format":"double"},"price_per_additional_server":{"type":"number","description":"The price per additional server","example":0.4967238596379307,"format":"double"},"price_per_additional_tool_call":{"type":"number","description":"The price per additional tool call","example":0.3991860359011297,"format":"double"}},"example":{"add_on_bullets":["Suscipit natus et sequi.","Rerum qui sed maxime aliquid voluptas accusamus."],"base_price":0.8704287997582418,"feature_bullets":["Iure voluptas dignissimos qui iusto.","Accusamus consequuntur maiores voluptas repudiandae vitae ut."],"included_bullets":["Ea ullam esse soluta molestias est aspernatur.","Omnis veritatis odit impedit.","Voluptatem velit consequuntur nisi."],"included_credits":9005870539989698338,"included_servers":551376746993450705,"included_tool_calls":160755727741980780,"price_per_additional_credit":0.017409518258045757,"price_per_additional_server":0.06017259159421869,"price_per_additional_tool_call":0.4412116710655307},"required":["base_price","included_tool_calls","included_servers","included_credits","price_per_additional_tool_call","price_per_additional_server","price_per_additional_credit","feature_bullets","included_bullets"]},"Tool":{"title":"Tool","type":"object","properties":{"http_tool_definition":{"$ref":"#/definitions/HTTPToolDefinition"},"prompt_template":{"$ref":"#/definitions/PromptTemplate"}},"description":"A polymorphic tool - can be an HTTP tool or a prompt template","example":{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}}},"ToolEntry":{"title":"ToolEntry","type":"object","properties":{"id":{"type":"string","description":"The ID of the tool","example":"Perferendis vitae ut ducimus qui aspernatur qui."},"name":{"type":"string","description":"The name of the tool","example":"Ea distinctio."},"tool_urn":{"type":"string","description":"The URN of the tool","example":"Suscipit error consequatur occaecati amet ullam quis."},"type":{"type":"string","example":"http","enum":["http","prompt"]}},"example":{"id":"Voluptas officiis voluptatibus id quo.","name":"Voluptate rerum et explicabo illo.","tool_urn":"Dolores inventore deserunt saepe.","type":"http"},"required":["type","id","name","tool_urn"]},"ToolVariation":{"title":"ToolVariation","type":"object","properties":{"confirm":{"type":"string","description":"The confirmation mode for the tool variation","example":"Eos tenetur."},"confirm_prompt":{"type":"string","description":"The confirmation prompt for the tool variation","example":"Reprehenderit maxime reprehenderit."},"created_at":{"type":"string","description":"The creation date of the tool variation","example":"Temporibus vel recusandae laudantium consequuntur voluptas."},"description":{"type":"string","description":"The description of the tool variation","example":"Sapiente ut ipsum."},"group_id":{"type":"string","description":"The ID of the tool variation group","example":"Officiis eum."},"id":{"type":"string","description":"The ID of the tool variation","example":"Temporibus mollitia aut aperiam."},"name":{"type":"string","description":"The name of the tool variation","example":"Repellendus aut consequuntur sequi."},"src_tool_name":{"type":"string","description":"The name of the source tool","example":"Autem quis."},"summarizer":{"type":"string","description":"The summarizer of the tool variation","example":"Id asperiores et maxime est illum."},"summary":{"type":"string","description":"The summary of the tool variation","example":"Optio quo qui hic at."},"tags":{"type":"array","items":{"type":"string","example":"Sunt culpa iusto non consequatur officiis."},"description":"The tags of the tool variation","example":["Corporis inventore maiores.","Eligendi velit eius vel."]},"updated_at":{"type":"string","description":"The last update date of the tool variation","example":"Suscipit dolore commodi ut ducimus nobis eaque."}},"example":{"confirm":"Vitae dolores itaque quos dicta veniam.","confirm_prompt":"Neque consequatur quo deserunt ab eveniet commodi.","created_at":"Aut sint ut exercitationem maiores ut cumque.","description":"Delectus consequatur voluptate.","group_id":"Fugit non soluta dolores rem eos at.","id":"Ut accusantium ex dolorem repellendus.","name":"Doloremque ipsum.","src_tool_name":"Esse est.","summarizer":"Dolores laboriosam provident.","summary":"Et vitae voluptatibus adipisci quidem praesentium eos.","tags":["Doloremque numquam.","Voluptatem voluptatum.","Eaque corrupti."],"updated_at":"Veniam adipisci sit culpa est corrupti."},"required":["id","group_id","src_tool_name","created_at","updated_at"]},"ToolsListToolsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"Toolset":{"title":"Toolset","type":"object","properties":{"account_type":{"type":"string","description":"The account type of the organization","example":"Recusandae optio."},"created_at":{"type":"string","description":"When the toolset was created.","example":"1979-07-14T00:31:46Z","format":"date-time"},"custom_domain_id":{"type":"string","description":"The ID of the custom domain to use for the toolset","example":"Officia saepe voluptas."},"default_environment_slug":{"type":"string","description":"The slug of the environment to use as the default for the toolset","example":"s4v","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"description":{"type":"string","description":"Description of the toolset","example":"Sint qui ducimus."},"external_oauth_server":{"$ref":"#/definitions/ExternalOAuthServer"},"id":{"type":"string","description":"The ID of the toolset","example":"Dolorem quo itaque rerum quo."},"mcp_enabled":{"type":"boolean","description":"Whether the toolset is enabled for MCP","example":true},"mcp_is_public":{"type":"boolean","description":"Whether the toolset is public in MCP","example":false},"mcp_slug":{"type":"string","description":"The slug of the MCP to use for the toolset","example":"0j5","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"name":{"type":"string","description":"The name of the toolset","example":"Laboriosam totam similique qui consectetur."},"oauth_proxy_server":{"$ref":"#/definitions/OAuthProxyServer"},"organization_id":{"type":"string","description":"The organization ID this toolset belongs to","example":"Suscipit sit aut voluptates commodi."},"project_id":{"type":"string","description":"The project ID this toolset belongs to","example":"Autem libero nemo rerum."},"prompt_templates":{"type":"array","items":{"$ref":"#/definitions/PromptTemplate"},"description":"The prompt templates in this toolset -- Note: these are actual prompts, as in MCP prompts","example":[{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}]},"security_variables":{"type":"array","items":{"$ref":"#/definitions/SecurityVariable"},"description":"The security variables that are relevant to the toolset","example":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}]},"server_variables":{"type":"array","items":{"$ref":"#/definitions/ServerVariable"},"description":"The server variables that are relevant to the toolset","example":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}]},"slug":{"type":"string","description":"The slug of the toolset","example":"hlc","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"tool_urns":{"type":"array","items":{"type":"string","example":"Quia illo sunt accusamus ea aut voluptatem."},"description":"The tool URNs in this toolset","example":["Aliquid deleniti amet.","Quis vitae quasi est est atque assumenda.","Accusantium ab earum."]},"tools":{"type":"array","items":{"$ref":"#/definitions/Tool"},"description":"The tools in this toolset","example":[{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}}]},"updated_at":{"type":"string","description":"When the toolset was last updated.","example":"1973-12-05T10:19:06Z","format":"date-time"}},"example":{"account_type":"Accusamus quos sed ipsum corrupti ullam.","created_at":"1994-05-14T23:58:11Z","custom_domain_id":"Suscipit sed enim voluptas non.","default_environment_slug":"mbj","description":"Itaque numquam consequatur.","external_oauth_server":{"created_at":"1999-02-08T11:28:47Z","id":"Facilis asperiores magnam est facere illum.","metadata":"A deserunt provident nam tempore veritatis.","project_id":"Pariatur voluptate porro.","slug":"r3w","updated_at":"1978-05-13T16:19:54Z"},"id":"Nobis nam omnis placeat laboriosam.","mcp_enabled":false,"mcp_is_public":true,"mcp_slug":"yaa","name":"Eaque doloribus et et voluptas.","oauth_proxy_server":{"created_at":"1994-11-07T15:08:03Z","id":"Nobis ut ea dolorem.","oauth_proxy_providers":[{"authorization_endpoint":"Laudantium est omnis asperiores.","created_at":"1981-01-06T12:18:09Z","grant_types_supported":["Amet recusandae cum et nesciunt reiciendis.","Sit vitae provident.","Dolore vel sunt totam assumenda ab voluptatum.","Aut quaerat quia sunt quo sed."],"id":"Ipsam corrupti.","scopes_supported":["Rerum repellat recusandae.","Non ex.","Eum neque.","Magnam non rerum ratione."],"slug":"vjt","token_endpoint":"Et natus et deleniti fugiat.","token_endpoint_auth_methods_supported":["Recusandae vero temporibus perspiciatis perferendis.","Ut illum iusto consectetur voluptas porro.","Nesciunt error sunt.","Et impedit eaque culpa quia est et."],"updated_at":"2008-09-17T17:27:28Z"},{"authorization_endpoint":"Laudantium est omnis asperiores.","created_at":"1981-01-06T12:18:09Z","grant_types_supported":["Amet recusandae cum et nesciunt reiciendis.","Sit vitae provident.","Dolore vel sunt totam assumenda ab voluptatum.","Aut quaerat quia sunt quo sed."],"id":"Ipsam corrupti.","scopes_supported":["Rerum repellat recusandae.","Non ex.","Eum neque.","Magnam non rerum ratione."],"slug":"vjt","token_endpoint":"Et natus et deleniti fugiat.","token_endpoint_auth_methods_supported":["Recusandae vero temporibus perspiciatis perferendis.","Ut illum iusto consectetur voluptas porro.","Nesciunt error sunt.","Et impedit eaque culpa quia est et."],"updated_at":"2008-09-17T17:27:28Z"}],"project_id":"Repellendus quam sequi laboriosam aperiam.","slug":"0rx","updated_at":"1978-10-09T12:18:04Z"},"organization_id":"Quo ea est pariatur ut temporibus.","project_id":"Perspiciatis error eum.","prompt_templates":[{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}],"security_variables":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}],"server_variables":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}],"slug":"i9o","tool_urns":["Unde nostrum voluptas dolore accusantium.","Quos dicta sit.","Illo harum ex autem dolorem."],"tools":[{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},{"http_tool_definition":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"In voluptas.","confirm":"Tempore earum dignissimos qui numquam in.","confirm_prompt":"Aut temporibus eaque a quos perferendis.","created_at":"1998-01-14T19:29:28Z","default_server_url":"Quidem nobis beatae quis repudiandae ea.","deployment_id":"Deleniti optio quis ut nobis.","description":"Sit nemo quo suscipit.","http_method":"Labore harum iure vel.","id":"Ut et minima.","name":"Nisi velit voluptas doloremque dolorem laboriosam sit.","openapiv3_document_id":"Neque incidunt unde ut unde.","openapiv3_operation":"Inventore magnam.","package_name":"Iste minus.","path":"Laborum maxime officia quia sit.","project_id":"Rerum aut recusandae voluptatum minus.","response_filter":{"content_types":["Assumenda voluptas sapiente neque modi dignissimos iste.","Consectetur numquam iure provident."],"status_codes":["Aperiam soluta rerum necessitatibus dignissimos.","Nobis assumenda sint omnis.","Illo eaque.","Excepturi debitis nemo et fugiat."],"type":"Libero soluta."},"schema":"Aperiam incidunt.","schema_version":"Temporibus voluptatem omnis aut nobis.","security":"Qui magni voluptas qui consequatur corporis.","summarizer":"Aliquid id nemo laudantium expedita fugiat ut.","summary":"Autem id voluptatem voluptates.","tags":["Quibusdam eligendi itaque consequatur aperiam ducimus recusandae.","Est non nesciunt corrupti iste dolor sunt."],"tool_urn":"Debitis magnam sunt perferendis aut magni.","updated_at":"2002-10-25T03:55:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"prompt_template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}}],"updated_at":"2002-10-14T06:34:19Z"},"required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]},"ToolsetEntry":{"title":"ToolsetEntry","type":"object","properties":{"created_at":{"type":"string","description":"When the toolset was created.","example":"2008-08-29T22:58:17Z","format":"date-time"},"custom_domain_id":{"type":"string","description":"The ID of the custom domain to use for the toolset","example":"Et at consectetur sed occaecati occaecati."},"default_environment_slug":{"type":"string","description":"The slug of the environment to use as the default for the toolset","example":"0cx","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"description":{"type":"string","description":"Description of the toolset","example":"Voluptas odio eos."},"id":{"type":"string","description":"The ID of the toolset","example":"Fuga qui deleniti sed."},"mcp_enabled":{"type":"boolean","description":"Whether the toolset is enabled for MCP","example":false},"mcp_is_public":{"type":"boolean","description":"Whether the toolset is public in MCP","example":true},"mcp_slug":{"type":"string","description":"The slug of the MCP to use for the toolset","example":"pkc","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"name":{"type":"string","description":"The name of the toolset","example":"Veniam adipisci aliquam."},"organization_id":{"type":"string","description":"The organization ID this toolset belongs to","example":"Omnis ipsum aut."},"project_id":{"type":"string","description":"The project ID this toolset belongs to","example":"Sed quaerat consequatur quas modi eius asperiores."},"prompt_templates":{"type":"array","items":{"$ref":"#/definitions/PromptTemplateEntry"},"description":"The prompt templates in this toolset -- Note: these are actual prompts, as in MCP prompts","example":[{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"}]},"security_variables":{"type":"array","items":{"$ref":"#/definitions/SecurityVariable"},"description":"The security variables that are relevant to the toolset","example":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}]},"server_variables":{"type":"array","items":{"$ref":"#/definitions/ServerVariable"},"description":"The server variables that are relevant to the toolset","example":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}]},"slug":{"type":"string","description":"The slug of the toolset","example":"m85","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"tool_urns":{"type":"array","items":{"type":"string","example":"Sint quaerat beatae qui."},"description":"The tool URNs in this toolset","example":["Officia voluptas ut minima ullam totam.","Est sed assumenda.","Quae consectetur placeat."]},"tools":{"type":"array","items":{"$ref":"#/definitions/ToolEntry"},"description":"The tools in this toolset","example":[{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"}]},"updated_at":{"type":"string","description":"When the toolset was last updated.","example":"1974-07-14T02:50:20Z","format":"date-time"}},"example":{"created_at":"1983-03-05T11:09:27Z","custom_domain_id":"Sunt dignissimos corporis non non omnis dolor.","default_environment_slug":"s4k","description":"Consequatur aut voluptates consequatur nulla ipsa.","id":"Minus et est velit alias accusamus.","mcp_enabled":false,"mcp_is_public":false,"mcp_slug":"j07","name":"Quibusdam aperiam aut corrupti quibusdam cupiditate.","organization_id":"Et ad praesentium.","project_id":"Aliquam consequatur minus ut aut reprehenderit et.","prompt_templates":[{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"},{"id":"Porro nihil.","kind":"Quia eaque animi mollitia ex odit quas.","name":"vv1"}],"security_variables":[{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."},{"bearer_format":"Ut quasi laboriosam eum ad quam.","env_variables":["Molestias molestias.","Et error veritatis.","Asperiores exercitationem corrupti fuga earum.","Sint et qui ab dolor et maxime."],"in_placement":"Eos et consequatur.","name":"Aut deleniti earum exercitationem quis.","oauth_flows":"UXVpIHF1aXMgZnVnaWF0IGFsaWFzIHF1aXMgc2l0IGRlYml0aXMu","oauth_types":["Illum non.","In ipsum animi iure error.","Dolore temporibus molestias molestiae est recusandae laudantium."],"scheme":"Id vitae est nostrum.","type":"Dolorum possimus eum."}],"server_variables":[{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]},{"description":"At sequi cum laborum et dignissimos.","env_variables":["Ratione sed dolorum eius itaque.","Aut quia iusto et.","Ab sapiente perspiciatis."]}],"slug":"qnc","tool_urns":["Sit nobis aut alias molestias laborum recusandae.","Aperiam pariatur laboriosam qui porro nulla natus.","Deleniti quia reiciendis accusamus eligendi fugiat."],"tools":[{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"},{"id":"Velit impedit est similique.","name":"Minus ea minus cupiditate dignissimos repudiandae cumque.","tool_urn":"Ut vel non nemo rerum sed.","type":"prompt"}],"updated_at":"1988-02-02T04:21:30Z"},"required":["id","project_id","organization_id","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]},"ToolsetsAddExternalOAuthServerBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerRequestBody":{"title":"ToolsetsAddExternalOAuthServerRequestBody","type":"object","properties":{"external_oauth_server":{"$ref":"#/definitions/ExternalOAuthServerForm"}},"example":{"external_oauth_server":{"metadata":"Qui hic corrupti voluptate accusamus sunt.","slug":"kgp"}},"required":["external_oauth_server"]},"ToolsetsAddExternalOAuthServerUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetRequestBody":{"title":"ToolsetsCreateToolsetRequestBody","type":"object","properties":{"default_environment_slug":{"type":"string","description":"The slug of the environment to use as the default for the toolset","example":"39i","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"description":{"type":"string","description":"Description of the toolset","example":"Perspiciatis minus delectus est omnis minus laudantium."},"name":{"type":"string","description":"The name of the toolset","example":"Odio non non sequi dolore maiores."},"tool_urns":{"type":"array","items":{"type":"string","example":"Asperiores consequatur."},"description":"List of tool URNs to include in the toolset","example":["Autem in ut nulla minus.","Laboriosam ducimus consequuntur exercitationem vel consequatur."]}},"example":{"default_environment_slug":"zki","description":"Et similique fuga et doloribus deserunt enim.","name":"Consequatur mollitia aspernatur vitae sit.","tool_urns":["Minus omnis minus.","Adipisci iste quod perferendis optio.","Expedita laborum voluptatibus expedita illum dicta delectus.","Delectus aspernatur est."]},"required":["name"]},"ToolsetsCreateToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetRequestBody":{"title":"ToolsetsUpdateToolsetRequestBody","type":"object","properties":{"custom_domain_id":{"type":"string","description":"The ID of the custom domain to use for the toolset","example":"Aliquam veniam quis deserunt perferendis quod est."},"default_environment_slug":{"type":"string","description":"The slug of the environment to use as the default for the toolset","example":"85h","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"description":{"type":"string","description":"The new description of the toolset","example":"Eos vero quaerat nobis vel."},"mcp_enabled":{"type":"boolean","description":"Whether the toolset is enabled for MCP","example":false},"mcp_is_public":{"type":"boolean","description":"Whether the toolset is public in MCP","example":false},"mcp_slug":{"type":"string","description":"The slug of the MCP to use for the toolset","example":"flr","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"name":{"type":"string","description":"The new name of the toolset","example":"Inventore fuga ut qui dignissimos impedit numquam."},"prompt_template_names":{"type":"array","items":{"type":"string","example":"Eveniet sed incidunt."},"description":"List of prompt template names to include (note: for actual prompts, not tools)","example":["Cum et debitis fugiat ipsam est voluptatibus.","Rerum consequuntur sit tempore provident nisi occaecati."]},"tool_urns":{"type":"array","items":{"type":"string","example":"Quis est."},"description":"List of tool URNs to include in the toolset","example":["Veritatis aut.","Aut voluptates eos.","Voluptatem totam ut qui aut."]}},"example":{"custom_domain_id":"Repellat non illum veritatis recusandae ipsa sit.","default_environment_slug":"ygq","description":"Ipsum fugit.","mcp_enabled":true,"mcp_is_public":false,"mcp_slug":"gl8","name":"Odit suscipit quam voluptas.","prompt_template_names":["Quo sequi aut corrupti.","Numquam culpa aut ipsa."],"tool_urns":["Culpa est sunt est dolores dolores voluptatem.","Fugiat esse impedit atque et quidem dicta."]}},"ToolsetsUpdateToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UpdatePackageResult":{"title":"UpdatePackageResult","type":"object","properties":{"package":{"$ref":"#/definitions/Package"}},"example":{"package":{"created_at":"1988-09-16T15:02:15Z","deleted_at":"2000-07-17T23:44:17Z","description":"Qui nostrum accusamus iure est.","description_raw":"Vel aperiam deserunt laboriosam.","id":"Quidem dolores dignissimos aut.","image_asset_id":"Dignissimos fugit nihil dignissimos.","keywords":["Et incidunt eaque quam numquam sit est.","Hic et sed."],"latest_version":"Natus quos officia quisquam.","name":"Atque cumque perferendis accusantium voluptate vel.","organization_id":"Enim quia nobis.","project_id":"Culpa illum reiciendis qui error et.","summary":"Placeat velit voluptas fugit.","title":"Vel quibusdam excepturi.","updated_at":"2012-07-30T23:21:39Z","url":"Optio non reiciendis."}},"required":["package"]},"UpdatePromptTemplateResult":{"title":"UpdatePromptTemplateResult","type":"object","properties":{"template":{"$ref":"#/definitions/PromptTemplate"}},"example":{"template":{"canonical":{"confirm":"Laudantium sapiente aut.","confirm_prompt":"Natus labore.","description":"Reprehenderit sequi veniam officia ut voluptate.","name":"Eligendi facere et fuga esse.","summarizer":"Sed aliquam.","summary":"Quos atque dolores tenetur vel sed distinctio.","tags":["Nesciunt incidunt voluptatem sit veritatis.","Aliquam et possimus et iusto facere."],"variation_id":"Debitis doloribus."},"canonical_name":"Ut et quis nesciunt autem deserunt laudantium.","confirm":"Sit illum porro impedit.","confirm_prompt":"Harum aut ratione cupiditate et ipsam.","created_at":"1996-10-20T02:24:39Z","description":"Quia omnis reiciendis.","engine":"mustache","history_id":"Nam ea consequatur et sit rem.","id":"Rem similique quos voluptates enim voluptate quia.","kind":"prompt","name":"Ullam unde quam quasi cupiditate exercitationem maiores.","predecessor_id":"Et quia nemo sed ut.","project_id":"Eius sint.","prompt":"Odit blanditiis eos laboriosam eum.","schema":"Nesciunt quia et.","schema_version":"Fugit et.","summarizer":"Et exercitationem.","tool_urn":"Sapiente eos architecto odio.","tools_hint":["Repellat sed quia sed quas excepturi rerum.","Optio ex eveniet ratione nisi iste.","Maiores ea in minus consectetur nemo."],"updated_at":"1992-03-02T06:20:38Z","variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}}},"required":["template"]},"UploadFunctionsResult":{"title":"UploadFunctionsResult","type":"object","properties":{"asset":{"$ref":"#/definitions/Asset"}},"example":{"asset":{"content_length":7034713796615647979,"content_type":"Iure aut.","created_at":"2004-10-04T04:44:01Z","id":"Omnis corporis ex tenetur distinctio.","kind":"image","sha256":"Nihil vel est ea debitis ex.","updated_at":"1970-02-28T13:05:31Z"}},"required":["asset"]},"UploadImageResult":{"title":"UploadImageResult","type":"object","properties":{"asset":{"$ref":"#/definitions/Asset"}},"example":{"asset":{"content_length":7034713796615647979,"content_type":"Iure aut.","created_at":"2004-10-04T04:44:01Z","id":"Omnis corporis ex tenetur distinctio.","kind":"image","sha256":"Nihil vel est ea debitis ex.","updated_at":"1970-02-28T13:05:31Z"}},"required":["asset"]},"UploadOpenAPIv3Result":{"title":"UploadOpenAPIv3Result","type":"object","properties":{"asset":{"$ref":"#/definitions/Asset"}},"example":{"asset":{"content_length":7034713796615647979,"content_type":"Iure aut.","created_at":"2004-10-04T04:44:01Z","id":"Omnis corporis ex tenetur distinctio.","kind":"image","sha256":"Nihil vel est ea debitis ex.","updated_at":"1970-02-28T13:05:31Z"}},"required":["asset"]},"UpsertGlobalToolVariationResult":{"title":"UpsertGlobalToolVariationResult","type":"object","properties":{"variation":{"$ref":"#/definitions/ToolVariation"}},"example":{"variation":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","created_at":"Vel delectus error sed iste.","description":"Corporis vel.","group_id":"Ut et velit facere.","id":"Vero voluptatem excepturi modi iusto.","name":"Deleniti voluptas dolorem et exercitationem unde placeat.","src_tool_name":"Explicabo perspiciatis vero.","summarizer":"Optio ducimus quia aut modi.","summary":"Omnis voluptas nulla.","tags":["Aut ut voluptas et quo.","Commodi aliquam odio nesciunt laboriosam consequatur."],"updated_at":"Qui incidunt distinctio omnis laboriosam."}},"required":["variation"]},"UsageCreateCheckoutBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageTiers":{"title":"UsageTiers","type":"object","properties":{"enterprise":{"$ref":"#/definitions/TierLimits"},"free":{"$ref":"#/definitions/TierLimits"},"pro":{"$ref":"#/definitions/TierLimits"}},"example":{"enterprise":{"add_on_bullets":["Porro recusandae excepturi.","Eum voluptatibus et sit laudantium ducimus.","Et reprehenderit amet laboriosam tempore et veniam.","Vel officia similique temporibus est."],"base_price":0.13466192828789703,"feature_bullets":["Sed est dolorem ab earum numquam perferendis.","Voluptas eaque incidunt voluptatem suscipit veniam.","Est accusantium voluptas porro.","Quas voluptatum eius facilis ut numquam tenetur."],"included_bullets":["Quidem quidem assumenda cupiditate ad quae tempora.","Accusamus omnis.","Nam quisquam unde velit aut nihil sapiente.","Dolores expedita dicta qui rerum."],"included_credits":2587719529957697371,"included_servers":7314720617676342212,"included_tool_calls":3908809275888227304,"price_per_additional_credit":0.5622278418654515,"price_per_additional_server":0.8508006261170875,"price_per_additional_tool_call":0.8653211335896781},"free":{"add_on_bullets":["Porro recusandae excepturi.","Eum voluptatibus et sit laudantium ducimus.","Et reprehenderit amet laboriosam tempore et veniam.","Vel officia similique temporibus est."],"base_price":0.13466192828789703,"feature_bullets":["Sed est dolorem ab earum numquam perferendis.","Voluptas eaque incidunt voluptatem suscipit veniam.","Est accusantium voluptas porro.","Quas voluptatum eius facilis ut numquam tenetur."],"included_bullets":["Quidem quidem assumenda cupiditate ad quae tempora.","Accusamus omnis.","Nam quisquam unde velit aut nihil sapiente.","Dolores expedita dicta qui rerum."],"included_credits":2587719529957697371,"included_servers":7314720617676342212,"included_tool_calls":3908809275888227304,"price_per_additional_credit":0.5622278418654515,"price_per_additional_server":0.8508006261170875,"price_per_additional_tool_call":0.8653211335896781},"pro":{"add_on_bullets":["Porro recusandae excepturi.","Eum voluptatibus et sit laudantium ducimus.","Et reprehenderit amet laboriosam tempore et veniam.","Vel officia similique temporibus est."],"base_price":0.13466192828789703,"feature_bullets":["Sed est dolorem ab earum numquam perferendis.","Voluptas eaque incidunt voluptatem suscipit veniam.","Est accusantium voluptas porro.","Quas voluptatum eius facilis ut numquam tenetur."],"included_bullets":["Quidem quidem assumenda cupiditate ad quae tempora.","Accusamus omnis.","Nam quisquam unde velit aut nihil sapiente.","Dolores expedita dicta qui rerum."],"included_credits":2587719529957697371,"included_servers":7314720617676342212,"included_tool_calls":3908809275888227304,"price_per_additional_credit":0.5622278418654515,"price_per_additional_server":0.8508006261170875,"price_per_additional_tool_call":0.8653211335896781}},"required":["free","pro","enterprise"]},"VariationsDeleteGlobalBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalRequestBody":{"title":"VariationsUpsertGlobalRequestBody","type":"object","properties":{"confirm":{"type":"string","description":"The confirmation mode for the tool variation","example":"always","enum":["always","never","session"]},"confirm_prompt":{"type":"string","description":"The confirmation prompt for the tool variation","example":"Eos pariatur soluta est soluta."},"description":{"type":"string","description":"The description of the tool variation","example":"Expedita ut non ullam consequatur vitae."},"name":{"type":"string","description":"The name of the tool variation","example":"Recusandae perferendis accusantium temporibus cupiditate impedit."},"src_tool_name":{"type":"string","description":"The name of the source tool","example":"Et cupiditate voluptas enim aut."},"summarizer":{"type":"string","description":"The summarizer of the tool variation","example":"Cupiditate et enim et sunt deleniti."},"summary":{"type":"string","description":"The summary of the tool variation","example":"Dolore aut."},"tags":{"type":"array","items":{"type":"string","example":"Voluptatibus sed."},"description":"The tags of the tool variation","example":["Earum eos.","A aliquam consequuntur odit quae qui."]}},"example":{"confirm":"always","confirm_prompt":"Laudantium aperiam.","description":"Et occaecati sit qui qui dolores iste.","name":"Facilis officia ut dolorem dolore quas et.","src_tool_name":"Sint ut.","summarizer":"Mollitia non ab vel repudiandae ipsa qui.","summary":"Aliquid laboriosam eum ut quae ex.","tags":["Vero sit eius.","Voluptas voluptatum quis optio suscipit amet esse."]},"required":["src_tool_name"]},"VariationsUpsertGlobalUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]}},"securityDefinitions":{"apikey_header_Gram-Key":{"type":"apiKey","description":"key based auth.\n\n**Security Scopes**:\n * `consumer`: consumer based tool access\n * `producer`: producer based tool access","name":"Gram-Key","in":"header"},"project_slug_header_Gram-Project":{"type":"apiKey","description":"project slug header auth.","name":"Gram-Project","in":"header"},"project_slug_query_project_slug":{"type":"apiKey","description":"project slug header auth.","name":"project_slug","in":"query"},"session_header_Gram-Session":{"type":"apiKey","description":"Session based auth. By cookie or header.","name":"Gram-Session","in":"header"}}} \ No newline at end of file +{"swagger":"2.0","info":{"title":"Gram API Description","description":"Gram is the tools platform for AI agents","version":"0.0.1"},"host":"localhost:80","consumes":["application/json","application/xml","application/gob"],"produces":["application/json","application/xml","application/gob"],"paths":{"/rpc/assets.list":{"get":{"description":"List all assets for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"assets#listAssets","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListAssetsResult","required":["assets"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsListAssetsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsListAssetsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsListAssetsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsListAssetsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsListAssetsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsListAssetsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsListAssetsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsListAssetsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsListAssetsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listAssets assets","tags":["assets"],"x-speakeasy-name-override":"listAssets","x-speakeasy-react-hook":{"name":"ListAssets"}}},"/rpc/assets.serveImage":{"get":{"description":"Serve an image from Gram.","operationId":"assets#serveImage","parameters":[{"description":"The ID of the asset to serve","in":"query","name":"id","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","headers":{"Content-Length":{"type":"int64"},"Content-Type":{"type":"string"},"Last-Modified":{"type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsServeImageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsServeImageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsServeImageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsServeImageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsServeImageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsServeImageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsServeImageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsServeImageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsServeImageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null},{"session_header_Gram-Session":null}],"summary":"serveImage assets","tags":["assets"],"x-speakeasy-name-override":"serveImage","x-speakeasy-react-hook":{"name":"serveImage"}}},"/rpc/assets.serveOpenAPIv3":{"get":{"description":"Serve an OpenAPIv3 asset from Gram.","operationId":"assets#serveOpenAPIv3","parameters":[{"description":"The ID of the asset to serve","in":"query","name":"id","required":true,"type":"string"},{"description":"The procect ID that the asset belongs to","in":"query","name":"project_id","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","headers":{"Content-Length":{"type":"int64"},"Content-Type":{"type":"string"},"Last-Modified":{"type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3BadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3UnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3ForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3NotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3ConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3UnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3InvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3UnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsServeOpenAPIv3GatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null},{"session_header_Gram-Session":null}],"summary":"serveOpenAPIv3 assets","tags":["assets"],"x-speakeasy-name-override":"serveOpenAPIv3","x-speakeasy-react-hook":{"name":"serveOpenAPIv3"}}},"/rpc/assets.uploadFunctions":{"post":{"description":"Upload functions to Gram.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"assets#uploadFunctions","parameters":[{"in":"header","name":"Content-Type","required":true,"type":"string"},{"format":"int64","in":"header","name":"Content-Length","required":true,"type":"integer"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UploadFunctionsResult","required":["asset"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsUploadFunctionsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"uploadFunctions assets","tags":["assets"],"x-speakeasy-name-override":"uploadFunctions","x-speakeasy-react-hook":{"name":"UploadFunctions"}}},"/rpc/assets.uploadImage":{"post":{"description":"Upload an image to Gram.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"assets#uploadImage","parameters":[{"in":"header","name":"Content-Type","required":true,"type":"string"},{"format":"int64","in":"header","name":"Content-Length","required":true,"type":"integer"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UploadImageResult","required":["asset"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsUploadImageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsUploadImageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsUploadImageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsUploadImageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsUploadImageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsUploadImageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsUploadImageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsUploadImageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsUploadImageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"uploadImage assets","tags":["assets"],"x-speakeasy-name-override":"uploadImage","x-speakeasy-react-hook":{"name":"UploadImage"}}},"/rpc/assets.uploadOpenAPIv3":{"post":{"description":"Upload an OpenAPI v3 document to Gram.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"assets#uploadOpenAPIv3","parameters":[{"in":"header","name":"Content-Type","required":true,"type":"string"},{"format":"int64","in":"header","name":"Content-Length","required":true,"type":"integer"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UploadOpenAPIv3Result","required":["asset"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3BadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3UnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3ForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3NotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3ConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3UnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3InvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3UnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AssetsUploadOpenAPIv3GatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"uploadOpenAPIv3 assets","tags":["assets"],"x-speakeasy-name-override":"uploadOpenAPIv3","x-speakeasy-react-hook":{"name":"UploadOpenAPIv3"}}},"/rpc/auth.callback":{"get":{"description":"Handles the authentication callback.","operationId":"auth#callback","parameters":[{"description":"The auth code for authentication from the speakeasy system","in":"query","name":"code","required":true,"type":"string"}],"responses":{"307":{"description":"Temporary Redirect response.","headers":{"Gram-Session":{"description":"Session header","type":"string"},"Location":{"description":"The URL to redirect to after authentication","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthCallbackBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthCallbackUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthCallbackForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthCallbackNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthCallbackConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthCallbackUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthCallbackInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthCallbackUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthCallbackGatewayErrorResponseBody"}}},"schemes":["http"],"summary":"callback auth","tags":["auth"],"x-speakeasy-name-override":"callback","x-speakeasy-react-hook":{"disabled":true}}},"/rpc/auth.info":{"get":{"description":"Provides information about the current authentication status.","operationId":"auth#info","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","headers":{"Gram-Session":{"description":"Session header","type":"string"}},"schema":{"$ref":"#/definitions/AuthInfoResponseBody","required":["user_id","user_email","is_admin","active_organization_id","organizations","gram_account_type"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthInfoBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthInfoUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthInfoForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthInfoNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthInfoConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthInfoUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthInfoInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthInfoUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthInfoGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"info auth","tags":["auth"],"x-speakeasy-name-override":"info","x-speakeasy-react-hook":{"name":"SessionInfo"}}},"/rpc/auth.login":{"get":{"description":"Proxies to auth login through speakeasy oidc.","operationId":"auth#login","responses":{"307":{"description":"Temporary Redirect response.","headers":{"Location":{"description":"The URL to redirect to after authentication","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthLoginBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthLoginUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthLoginForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthLoginNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthLoginConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthLoginUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthLoginInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthLoginUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthLoginGatewayErrorResponseBody"}}},"schemes":["http"],"summary":"login auth","tags":["auth"],"x-speakeasy-name-override":"login","x-speakeasy-react-hook":{"disabled":true}}},"/rpc/auth.logout":{"post":{"description":"Logs out the current user by clearing their session.","operationId":"auth#logout","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthLogoutBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthLogoutUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthLogoutForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthLogoutNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthLogoutConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthLogoutUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthLogoutInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthLogoutUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthLogoutGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"logout auth","tags":["auth"],"x-speakeasy-name-override":"logout","x-speakeasy-react-hook":{"name":"Logout"}}},"/rpc/auth.register":{"post":{"description":"Register a new org for a user with their session information.","operationId":"auth#register","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"in":"body","name":"RegisterRequestBody","required":true,"schema":{"$ref":"#/definitions/AuthRegisterRequestBody","required":["org_name"]}}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthRegisterBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthRegisterUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthRegisterForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthRegisterNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthRegisterConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthRegisterUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthRegisterInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthRegisterUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthRegisterGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"register auth","tags":["auth"],"x-speakeasy-name-override":"register","x-speakeasy-react-hook":{"name":"Register"}}},"/rpc/auth.switchScopes":{"post":{"description":"Switches the authentication scope to a different organization.","operationId":"auth#switchScopes","parameters":[{"description":"The organization slug to switch scopes","in":"query","name":"organization_id","required":false,"type":"string"},{"description":"The project id to switch scopes too","in":"query","name":"project_id","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","headers":{"Gram-Session":{"description":"Session header","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/AuthSwitchScopesBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/AuthSwitchScopesUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/AuthSwitchScopesForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/AuthSwitchScopesNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/AuthSwitchScopesConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/AuthSwitchScopesUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/AuthSwitchScopesInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/AuthSwitchScopesUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/AuthSwitchScopesGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"switchScopes auth","tags":["auth"],"x-speakeasy-name-override":"switchScopes","x-speakeasy-react-hook":{"name":"SwitchScopes"}}},"/rpc/chat.creditUsage":{"get":{"description":"Load a chat by its ID","operationId":"chat#creditUsage","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ChatCreditUsageResponseBody","required":["credits_used","monthly_credits"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ChatCreditUsageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ChatCreditUsageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ChatCreditUsageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ChatCreditUsageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ChatCreditUsageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ChatCreditUsageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ChatCreditUsageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ChatCreditUsageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ChatCreditUsageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"creditUsage chat","tags":["chat"],"x-speakeasy-name-override":"creditUsage","x-speakeasy-react-hook":{"name":"GetCreditUsage"}}},"/rpc/chat.list":{"get":{"description":"List all chats for a project","operationId":"chat#listChats","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListChatsResult","required":["chats"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ChatListChatsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ChatListChatsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ChatListChatsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ChatListChatsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ChatListChatsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ChatListChatsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ChatListChatsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ChatListChatsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ChatListChatsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listChats chat","tags":["chat"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListChats"}}},"/rpc/chat.load":{"get":{"description":"Load a chat by its ID","operationId":"chat#loadChat","parameters":[{"description":"The ID of the chat","in":"query","name":"id","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Chat","required":["messages","id","title","user_id","num_messages","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ChatLoadChatBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ChatLoadChatUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ChatLoadChatForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ChatLoadChatNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ChatLoadChatConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ChatLoadChatUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ChatLoadChatInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ChatLoadChatUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ChatLoadChatGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"loadChat chat","tags":["chat"],"x-speakeasy-name-override":"load","x-speakeasy-react-hook":{"name":"LoadChat"}}},"/rpc/deployments.active":{"get":{"description":"Get the active deployment for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#getActiveDeployment","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetActiveDeploymentResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsGetActiveDeploymentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getActiveDeployment deployments","tags":["deployments"],"x-speakeasy-name-override":"active","x-speakeasy-react-hook":{"name":"ActiveDeployment"}}},"/rpc/deployments.create":{"post":{"description":"Create a deployment to load tool definitions.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#createDeployment","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"A unique identifier that will mitigate against duplicate deployments.","in":"header","name":"Idempotency-Key","required":true,"type":"string"},{"in":"body","name":"CreateDeploymentRequestBody","required":true,"schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentRequestBody"}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CreateDeploymentResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsCreateDeploymentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createDeployment deployments","tags":["deployments"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateDeployment"}}},"/rpc/deployments.evolve":{"post":{"description":"Create a new deployment with additional or updated tool sources.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#evolve","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"EvolveRequestBody","required":true,"schema":{"$ref":"#/definitions/DeploymentsEvolveRequestBody"}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/EvolveResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsEvolveBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsEvolveUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsEvolveForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsEvolveNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsEvolveConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsEvolveUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsEvolveInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsEvolveUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsEvolveGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"evolve deployments","tags":["deployments"],"x-speakeasy-name-override":"evolveDeployment","x-speakeasy-react-hook":{"name":"EvolveDeployment"}}},"/rpc/deployments.get":{"get":{"description":"Get a deployment by its ID.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#getDeployment","parameters":[{"description":"The ID of the deployment","in":"query","name":"id","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetDeploymentResult","required":["id","created_at","organization_id","project_id","user_id","openapiv3_assets","status","packages","openapiv3_tool_count","functions_tool_count"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getDeployment deployments","tags":["deployments"],"x-speakeasy-name-override":"getById","x-speakeasy-react-hook":{"name":"Deployment"}}},"/rpc/deployments.latest":{"get":{"description":"Get the latest deployment for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#getLatestDeployment","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetLatestDeploymentResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsGetLatestDeploymentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getLatestDeployment deployments","tags":["deployments"],"x-speakeasy-name-override":"latest","x-speakeasy-react-hook":{"name":"LatestDeployment"}}},"/rpc/deployments.list":{"get":{"description":"List all deployments in descending order of creation.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#listDeployments","parameters":[{"description":"The cursor to fetch results from","in":"query","name":"cursor","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListDeploymentResult","required":["items"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsListDeploymentsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listDeployments deployments","tags":["deployments"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListDeployments"}}},"/rpc/deployments.logs":{"get":{"description":"Get logs for a deployment.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#getDeploymentLogs","parameters":[{"description":"The ID of the deployment","in":"query","name":"deployment_id","required":true,"type":"string"},{"description":"The cursor to fetch results from","in":"query","name":"cursor","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetDeploymentLogsResult","required":["events","status"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsGetDeploymentLogsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getDeploymentLogs deployments","tags":["deployments"],"x-speakeasy-name-override":"logs","x-speakeasy-react-hook":{"name":"DeploymentLogs"}}},"/rpc/deployments.redeploy":{"post":{"description":"Redeploys an existing deployment.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"deployments#redeploy","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"RedeployRequestBody","required":true,"schema":{"$ref":"#/definitions/DeploymentsRedeployRequestBody","required":["deployment_id"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/RedeployResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DeploymentsRedeployBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DeploymentsRedeployUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DeploymentsRedeployForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DeploymentsRedeployNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DeploymentsRedeployConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DeploymentsRedeployUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DeploymentsRedeployInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DeploymentsRedeployUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DeploymentsRedeployGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"redeploy deployments","tags":["deployments"],"x-speakeasy-name-override":"redeployDeployment","x-speakeasy-react-hook":{"name":"RedeployDeployment"}}},"/rpc/domain.delete":{"delete":{"description":"Delete a custom domain","operationId":"domains#deleteDomain","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DomainsDeleteDomainGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"deleteDomain domains","tags":["domains"],"x-speakeasy-name-override":"deleteDomain","x-speakeasy-react-hook":{"name":"deleteDomain"}}},"/rpc/domain.get":{"get":{"description":"Get the custom domain for a project","operationId":"domains#getDomain","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CustomDomain","required":["id","organization_id","domain","verified","activated","created_at","updated_at","is_updating"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DomainsGetDomainBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DomainsGetDomainUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DomainsGetDomainForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DomainsGetDomainNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DomainsGetDomainConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DomainsGetDomainUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DomainsGetDomainInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DomainsGetDomainUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DomainsGetDomainGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getDomain domains","tags":["domains"],"x-speakeasy-name-override":"getDomain","x-speakeasy-react-hook":{"name":"getDomain"}}},"/rpc/domain.register":{"post":{"description":"Create a custom domain for a organization","operationId":"domains#createDomain","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreateDomainRequestBody","required":true,"schema":{"$ref":"#/definitions/DomainsCreateDomainRequestBody","required":["domain"]}}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/DomainsCreateDomainBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/DomainsCreateDomainUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/DomainsCreateDomainForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/DomainsCreateDomainNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/DomainsCreateDomainConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/DomainsCreateDomainUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/DomainsCreateDomainInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/DomainsCreateDomainUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/DomainsCreateDomainGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createDomain domains","tags":["domains"],"x-speakeasy-name-override":"registerDomain","x-speakeasy-react-hook":{"name":"registerDomain"}}},"/rpc/environments.create":{"post":{"description":"Create a new environment","operationId":"environments#createEnvironment","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreateEnvironmentRequestBody","required":true,"schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentRequestBody","required":["organization_id","name","entries"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Environment","required":["id","organization_id","project_id","name","slug","entries","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/EnvironmentsCreateEnvironmentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createEnvironment environments","tags":["environments"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateEnvironment"}}},"/rpc/environments.delete":{"delete":{"description":"Delete an environment","operationId":"environments#deleteEnvironment","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/EnvironmentsDeleteEnvironmentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"deleteEnvironment environments","tags":["environments"],"x-speakeasy-name-override":"deleteBySlug","x-speakeasy-react-hook":{"name":"DeleteEnvironment"}}},"/rpc/environments.list":{"get":{"description":"List all environments for an organization","operationId":"environments#listEnvironments","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListEnvironmentsResult","required":["environments"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/EnvironmentsListEnvironmentsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listEnvironments environments","tags":["environments"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListEnvironments"}}},"/rpc/environments.update":{"post":{"description":"Update an environment","operationId":"environments#updateEnvironment","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdateEnvironmentRequestBody","required":true,"schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentRequestBody","required":["entries_to_update","entries_to_remove"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Environment","required":["id","organization_id","project_id","name","slug","entries","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/EnvironmentsUpdateEnvironmentGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"updateEnvironment environments","tags":["environments"],"x-speakeasy-name-override":"updateBySlug","x-speakeasy-react-hook":{"name":"UpdateEnvironment"}}},"/rpc/instances.get":{"get":{"description":"Load all relevant data for an instance of a toolset and environment\n\n**Required security scopes for apikey**:\n * `consumer`\n\n**Required security scopes for project_slug**:\n * `consumer`","operationId":"instances#getInstance","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"toolset_slug","required":true,"type":"string"},{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"environment_slug","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetInstanceResult","required":["name","tools","environment"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/InstancesGetInstanceBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/InstancesGetInstanceUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/InstancesGetInstanceForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/InstancesGetInstanceNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/InstancesGetInstanceConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/InstancesGetInstanceUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/InstancesGetInstanceInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/InstancesGetInstanceUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/InstancesGetInstanceGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"getInstance instances","tags":["instances"],"x-speakeasy-name-override":"getBySlug","x-speakeasy-react-hook":{"name":"Instance"}}},"/rpc/integrations.get":{"get":{"tags":["integrations"],"summary":"get integrations","description":"Get a third-party integration by ID or name.","operationId":"integrations#get","parameters":[{"name":"id","in":"query","description":"The ID of the integration to get (refers to a package id).","required":false,"type":"string"},{"name":"name","in":"query","description":"The name of the integration to get (refers to a package name).","required":false,"type":"string"},{"name":"Gram-Session","in":"header","description":"Session header","required":false,"type":"string"},{"name":"Gram-Project","in":"header","description":"project header","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetIntegrationResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/IntegrationsGetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/IntegrationsGetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/IntegrationsGetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/IntegrationsGetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/IntegrationsGetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/IntegrationsGetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/IntegrationsGetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/IntegrationsGetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/IntegrationsGetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}]}},"/rpc/integrations.list":{"get":{"description":"List available third-party integrations.","operationId":"integrations#list","parameters":[{"collectionFormat":"multi","description":"Keywords to filter integrations by","in":"query","items":{"maxLength":20,"type":"string"},"name":"keywords","required":false,"type":"array"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListIntegrationsResult"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/IntegrationsListBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/IntegrationsListUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/IntegrationsListForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/IntegrationsListNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/IntegrationsListConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/IntegrationsListUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/IntegrationsListInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/IntegrationsListUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/IntegrationsListGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"list integrations","tags":["integrations"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListIntegrations"}}},"/rpc/keys.create":{"post":{"description":"Create a new api key","operationId":"keys#createKey","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"in":"body","name":"CreateKeyRequestBody","required":true,"schema":{"$ref":"#/definitions/KeysCreateKeyRequestBody","required":["name","scopes"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Key","required":["id","organization_id","created_by_user_id","name","key_prefix","scopes","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/KeysCreateKeyBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/KeysCreateKeyUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/KeysCreateKeyForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/KeysCreateKeyNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/KeysCreateKeyConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/KeysCreateKeyUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/KeysCreateKeyInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/KeysCreateKeyUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/KeysCreateKeyGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"createKey keys","tags":["keys"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateAPIKey"}}},"/rpc/keys.list":{"get":{"description":"List all api keys for an organization","operationId":"keys#listKeys","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListKeysResult","required":["keys"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/KeysListKeysBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/KeysListKeysUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/KeysListKeysForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/KeysListKeysNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/KeysListKeysConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/KeysListKeysUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/KeysListKeysInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/KeysListKeysUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/KeysListKeysGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"listKeys keys","tags":["keys"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListAPIKeys"}}},"/rpc/keys.revoke":{"delete":{"description":"Revoke a api key","operationId":"keys#revokeKey","parameters":[{"description":"The ID of the key to revoke","in":"query","name":"id","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/KeysRevokeKeyBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/KeysRevokeKeyUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/KeysRevokeKeyForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/KeysRevokeKeyNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/KeysRevokeKeyConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/KeysRevokeKeyUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/KeysRevokeKeyInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/KeysRevokeKeyUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/KeysRevokeKeyGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"session_header_Gram-Session":null}],"summary":"revokeKey keys","tags":["keys"],"x-speakeasy-name-override":"revokeById","x-speakeasy-react-hook":{"name":"RevokeAPIKey"}}},"/rpc/mcpMetadata.get":{"get":{"description":"Fetch the metadata that powers the MCP install page.","operationId":"mcpMetadata#getMcpMetadata","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"toolset_slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataResponseBody"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/McpMetadataGetMcpMetadataGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getMcpMetadata mcpMetadata","tags":["mcpMetadata"],"x-speakeasy-name-override":"get","x-speakeasy-react-hook":{"name":"GetMcpMetadata"}}},"/rpc/mcpMetadata.set":{"post":{"description":"Create or update the metadata that powers the MCP install page.","operationId":"mcpMetadata#setMcpMetadata","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"SetMcpMetadataRequestBody","required":true,"schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataRequestBody","required":["toolset_slug"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/McpMetadata","required":["id","toolset_id","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/McpMetadataSetMcpMetadataGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"setMcpMetadata mcpMetadata","tags":["mcpMetadata"],"x-speakeasy-name-override":"set"}},"/rpc/packages.create":{"post":{"description":"Create a new package for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#createPackage","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreatePackageRequestBody","required":true,"schema":{"$ref":"#/definitions/PackagesCreatePackageRequestBody","required":["name","title","summary"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CreatePackageResult","required":["package"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesCreatePackageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesCreatePackageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesCreatePackageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesCreatePackageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesCreatePackageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesCreatePackageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesCreatePackageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesCreatePackageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesCreatePackageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createPackage packages","tags":["packages"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreatePackage"}}},"/rpc/packages.list":{"get":{"description":"List all packages for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#listPackages","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListPackagesResult","required":["packages"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesListPackagesBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesListPackagesUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesListPackagesForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesListPackagesNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesListPackagesConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesListPackagesUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesListPackagesInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesListPackagesUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesListPackagesGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listPackages packages","tags":["packages"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListPackages"}}},"/rpc/packages.listVersions":{"get":{"description":"List published versions of a package.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#listVersions","parameters":[{"description":"The name of the package","in":"query","name":"name","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListVersionsResult","required":["package","versions"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesListVersionsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesListVersionsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesListVersionsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesListVersionsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesListVersionsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesListVersionsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesListVersionsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesListVersionsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesListVersionsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listVersions packages","tags":["packages"],"x-speakeasy-name-override":"listVersions","x-speakeasy-react-hook":{"name":"ListVersions"}}},"/rpc/packages.publish":{"post":{"description":"Publish a new version of a package.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#publish","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"PublishRequestBody","required":true,"schema":{"$ref":"#/definitions/PackagesPublishRequestBody","required":["name","version","deployment_id","visibility"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/PublishPackageResult","required":["package","version"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesPublishBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesPublishUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesPublishForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesPublishNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesPublishConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesPublishUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesPublishInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesPublishUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesPublishGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"publish packages","tags":["packages"],"x-speakeasy-name-override":"publish","x-speakeasy-react-hook":{"name":"PublishPackage"}}},"/rpc/packages.update":{"put":{"description":"Update package details.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"packages#updatePackage","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdatePackageRequestBody","required":true,"schema":{"$ref":"#/definitions/PackagesUpdatePackageRequestBody","required":["id"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UpdatePackageResult","required":["package"]}},"304":{"description":"Not Modified response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageNotModifiedResponseBody","required":["location"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/PackagesUpdatePackageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"updatePackage packages","tags":["packages"],"x-speakeasy-name-override":"update","x-speakeasy-react-hook":{"name":"UpdatePackage"}}},"/rpc/projects.create":{"post":{"description":"Create a new project.\n\n**Required security scopes for apikey**:\n * `producer`","operationId":"projects#createProject","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"in":"body","name":"CreateProjectRequestBody","required":true,"schema":{"$ref":"#/definitions/ProjectsCreateProjectRequestBody","required":["organization_id","name"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CreateProjectResult","required":["project"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ProjectsCreateProjectGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null},{"session_header_Gram-Session":null}],"summary":"createProject projects","tags":["projects"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateProject"}}},"/rpc/projects.list":{"get":{"description":"List all projects for an organization.\n\n**Required security scopes for apikey**:\n * `producer`","operationId":"projects#listProjects","parameters":[{"description":"The ID of the organization to list projects for","in":"query","name":"organization_id","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListProjectsResult","required":["projects"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ProjectsListProjectsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ProjectsListProjectsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ProjectsListProjectsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ProjectsListProjectsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ProjectsListProjectsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ProjectsListProjectsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ProjectsListProjectsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ProjectsListProjectsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ProjectsListProjectsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null},{"session_header_Gram-Session":null}],"summary":"listProjects projects","tags":["projects"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListProjects"}}},"/rpc/projects.setLogo":{"post":{"description":"Uploads a logo for a project.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"projects#setLogo","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"SetLogoRequestBody","required":true,"schema":{"$ref":"#/definitions/ProjectsSetLogoRequestBody","required":["asset_id"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/SetProjectLogoResult","required":["project"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ProjectsSetLogoBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ProjectsSetLogoUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ProjectsSetLogoForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ProjectsSetLogoNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ProjectsSetLogoConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ProjectsSetLogoUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ProjectsSetLogoInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ProjectsSetLogoUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ProjectsSetLogoGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"setLogo projects","tags":["projects"],"x-speakeasy-name-override":"setLogo","x-speakeasy-react-hook":{"name":"setProjectLogo"}}},"/rpc/slack.callback":{"get":{"description":"Handles the authentication callback.","operationId":"slack#callback","parameters":[{"description":"The state parameter from the callback","in":"query","name":"state","required":true,"type":"string"},{"description":"The code parameter from the callback","in":"query","name":"code","required":true,"type":"string"}],"responses":{"307":{"description":"Temporary Redirect response.","headers":{"Location":{"description":"The URL to redirect to after authentication","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackCallbackBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackCallbackUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackCallbackForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackCallbackNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackCallbackConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackCallbackUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackCallbackInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackCallbackUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackCallbackGatewayErrorResponseBody"}}},"schemes":["http"],"summary":"callback slack","tags":["slack"],"x-speakeasy-name-override":"slackCallback","x-speakeasy-react-hook":{"disabled":true}}},"/rpc/slack.deleteConnection":{"delete":{"description":"delete slack connection for an organization and project.","operationId":"slack#deleteSlackConnection","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"204":{"description":"No Content response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackDeleteSlackConnectionGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"deleteSlackConnection slack","tags":["slack"],"x-speakeasy-name-override":"deleteSlackConnection","x-speakeasy-react-hook":{"name":"deleteSlackConnection"}}},"/rpc/slack.getConnection":{"get":{"description":"get slack connection for an organization and project.","operationId":"slack#getSlackConnection","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetSlackConnectionResult","required":["slack_team_name","slack_team_id","default_toolset_slug","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackGetSlackConnectionGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getSlackConnection slack","tags":["slack"],"x-speakeasy-name-override":"getSlackConnection","x-speakeasy-react-hook":{"name":"getSlackConnection"}}},"/rpc/slack.updateConnection":{"post":{"description":"update slack connection for an organization and project.","operationId":"slack#updateSlackConnection","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdateSlackConnectionRequestBody","required":true,"schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionRequestBody","required":["default_toolset_slug"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetSlackConnectionResult","required":["slack_team_name","slack_team_id","default_toolset_slug","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackUpdateSlackConnectionGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"updateSlackConnection slack","tags":["slack"],"x-speakeasy-name-override":"updateSlackConnection","x-speakeasy-react-hook":{"name":"updateSlackConnection"}}},"/rpc/templates.create":{"post":{"description":"Create a new prompt template.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"templates#createTemplate","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreateTemplateRequestBody","required":true,"schema":{"$ref":"#/definitions/TemplatesCreateTemplateRequestBody","required":["name","prompt","engine","kind"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/CreatePromptTemplateResult","required":["template"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesCreateTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"createTemplate templates","tags":["templates"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateTemplate"}}},"/rpc/templates.delete":{"delete":{"description":"Delete prompt template by its ID or name.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"templates#deleteTemplate","parameters":[{"description":"The ID of the prompt template","in":"query","name":"id","required":false,"type":"string"},{"description":"The name of the prompt template","in":"query","name":"name","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"204":{"description":"No Content response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesDeleteTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"deleteTemplate templates","tags":["templates"],"x-speakeasy-name-override":"delete","x-speakeasy-react-hook":{"name":"DeleteTemplate"}}},"/rpc/templates.get":{"get":{"description":"Get prompt template by its ID or name.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`\n\n**Required security scopes for apikey**:\n * `consumer`\n\n**Required security scopes for project_slug**:\n * `consumer`","operationId":"templates#getTemplate","parameters":[{"description":"The ID of the prompt template","in":"query","name":"id","required":false,"type":"string"},{"description":"The name of the prompt template","in":"query","name":"name","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/GetPromptTemplateResult","required":["template"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesGetTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"getTemplate templates","tags":["templates"],"x-speakeasy-name-override":"get","x-speakeasy-react-hook":{"name":"Template"}}},"/rpc/templates.list":{"get":{"description":"List available prompt template.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"templates#listTemplates","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListPromptTemplatesResult","required":["templates"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesListTemplatesGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"listTemplates templates","tags":["templates"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"Templates"}}},"/rpc/templates.render":{"post":{"description":"Render a prompt template by ID with provided input data.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`\n\n**Required security scopes for apikey**:\n * `consumer`\n\n**Required security scopes for project_slug**:\n * `consumer`","operationId":"templates#renderTemplateByID","parameters":[{"description":"The ID of the prompt template to render","in":"query","name":"id","required":true,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"RenderTemplateByIDRequestBody","required":true,"schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDRequestBody","required":["arguments"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/RenderTemplateResult","required":["prompt"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateByIDGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"renderTemplateByID templates","tags":["templates"],"x-speakeasy-name-override":"renderByID","x-speakeasy-react-hook":{"name":"RenderTemplateByID","type":"query"}}},"/rpc/templates.renderDirect":{"post":{"description":"Render a prompt template directly with all template fields provided.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`\n\n**Required security scopes for apikey**:\n * `consumer`\n\n**Required security scopes for project_slug**:\n * `consumer`","operationId":"templates#renderTemplate","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"RenderTemplateRequestBody","required":true,"schema":{"$ref":"#/definitions/TemplatesRenderTemplateRequestBody","required":["prompt","arguments","engine","kind"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/RenderTemplateResult","required":["prompt"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesRenderTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"renderTemplate templates","tags":["templates"],"x-speakeasy-name-override":"render","x-speakeasy-react-hook":{"name":"RenderTemplate","type":"query"}}},"/rpc/templates.update":{"post":{"description":"Update a prompt template.\n\n**Required security scopes for apikey**:\n * `producer`\n\n**Required security scopes for project_slug**:\n * `producer`","operationId":"templates#updateTemplate","parameters":[{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdateTemplateRequestBody","required":true,"schema":{"$ref":"#/definitions/TemplatesUpdateTemplateRequestBody","required":["id"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UpdatePromptTemplateResult","required":["template"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/TemplatesUpdateTemplateGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"updateTemplate templates","tags":["templates"],"x-speakeasy-name-override":"update","x-speakeasy-react-hook":{"name":"UpdateTemplate"}}},"/rpc/tools.list":{"get":{"description":"List all tools for a project","operationId":"tools#listTools","parameters":[{"description":"The cursor to fetch results from","in":"query","name":"cursor","required":false,"type":"string"},{"description":"The number of tools to return per page","format":"int32","in":"query","name":"limit","required":false,"type":"integer"},{"description":"The deployment ID. If unset, latest deployment will be used.","in":"query","name":"deployment_id","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListToolsResult","required":["tools"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsListToolsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsListToolsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsListToolsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsListToolsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsListToolsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsListToolsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsListToolsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsListToolsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsListToolsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listTools tools","tags":["tools"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListTools"}}},"/rpc/toolsets.addExternalOAuthServer":{"post":{"description":"Associate an external OAuth server with a toolset","operationId":"toolsets#addExternalOAuthServer","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"AddExternalOAuthServerRequestBody","required":true,"schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerRequestBody","required":["external_oauth_server"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsAddExternalOAuthServerGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"addExternalOAuthServer toolsets","tags":["toolsets"],"x-speakeasy-name-override":"addExternalOAuthServer","x-speakeasy-react-hook":{"name":"AddExternalOAuthServer"}}},"/rpc/toolsets.checkMCPSlugAvailability":{"get":{"description":"Check if a MCP slug is available","operationId":"toolsets#checkMCPSlugAvailability","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"boolean"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsCheckMCPSlugAvailabilityGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"checkMCPSlugAvailability toolsets","tags":["toolsets"],"x-speakeasy-name-override":"checkMCPSlugAvailability","x-speakeasy-react-hook":{"name":"CheckMCPSlugAvailability"}}},"/rpc/toolsets.clone":{"post":{"description":"Clone an existing toolset with a new name","operationId":"toolsets#cloneToolset","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsCloneToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"cloneToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"cloneBySlug","x-speakeasy-react-hook":{"name":"CloneToolset"}}},"/rpc/toolsets.create":{"post":{"description":"Create a new toolset with associated tools","operationId":"toolsets#createToolset","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"CreateToolsetRequestBody","required":true,"schema":{"$ref":"#/definitions/ToolsetsCreateToolsetRequestBody","required":["name"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsCreateToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"create","x-speakeasy-react-hook":{"name":"CreateToolset"}}},"/rpc/toolsets.delete":{"delete":{"description":"Delete a toolset by its ID","operationId":"toolsets#deleteToolset","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"204":{"description":"No Content response."},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsDeleteToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"deleteToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"deleteBySlug","x-speakeasy-react-hook":{"name":"DeleteToolset"}}},"/rpc/toolsets.get":{"get":{"description":"Get detailed information about a toolset including full HTTP tool definitions","operationId":"toolsets#getToolset","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsGetToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"getBySlug","x-speakeasy-react-hook":{"name":"Toolset"}}},"/rpc/toolsets.list":{"get":{"description":"List all toolsets for a project","operationId":"toolsets#listToolsets","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListToolsetsResult","required":["toolsets"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsListToolsetsGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"listToolsets toolsets","tags":["toolsets"],"x-speakeasy-name-override":"list","x-speakeasy-react-hook":{"name":"ListToolsets"}}},"/rpc/toolsets.removeOAuthServer":{"post":{"description":"Remove OAuth server association from a toolset","operationId":"toolsets#removeOAuthServer","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsRemoveOAuthServerGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"removeOAuthServer toolsets","tags":["toolsets"],"x-speakeasy-name-override":"removeOAuthServer","x-speakeasy-react-hook":{"name":"RemoveOAuthServer"}}},"/rpc/toolsets.update":{"post":{"description":"Update a toolset's properties including name, description, and HTTP tools","operationId":"toolsets#updateToolset","parameters":[{"description":"A short url-friendly label that uniquely identifies a resource.","in":"query","name":"slug","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpdateToolsetRequestBody","required":true,"schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetRequestBody"}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/Toolset","required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/ToolsetsUpdateToolsetGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"updateToolset toolsets","tags":["toolsets"],"x-speakeasy-name-override":"updateBySlug","x-speakeasy-react-hook":{"name":"UpdateToolset"}}},"/rpc/usage.createCheckout":{"post":{"description":"Create a checkout link for upgrading to the business plan","operationId":"usage#createCheckout","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"string"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/UsageCreateCheckoutGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createCheckout usage","tags":["usage"],"x-speakeasy-name-override":"createCheckout","x-speakeasy-react-hook":{"name":"createCheckout"}}},"/rpc/usage.createCustomerSession":{"post":{"description":"Create a customer session for the user","operationId":"usage#createCustomerSession","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"type":"string"}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/UsageCreateCustomerSessionGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"createCustomerSession usage","tags":["usage"],"x-speakeasy-name-override":"createCustomerSession","x-speakeasy-react-hook":{"name":"createCustomerSession"}}},"/rpc/usage.getPeriodUsage":{"get":{"description":"Get the usage for a project for a given period","operationId":"usage#getPeriodUsage","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/PeriodUsage","required":["tool_calls","max_tool_calls","servers","max_servers","actual_enabled_server_count"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/UsageGetPeriodUsageGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null}],"summary":"getPeriodUsage usage","tags":["usage"],"x-speakeasy-name-override":"getPeriodUsage","x-speakeasy-react-hook":{"name":"getPeriodUsage"}}},"/rpc/usage.getUsageTiers":{"get":{"description":"Get the usage tiers","operationId":"usage#getUsageTiers","responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UsageTiers","required":["free","pro","enterprise"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/UsageGetUsageTiersGatewayErrorResponseBody"}}},"schemes":["http"],"summary":"getUsageTiers usage","tags":["usage"],"x-speakeasy-name-override":"getUsageTiers","x-speakeasy-react-hook":{"name":"getUsageTiers"}}},"/rpc/variations.deleteGlobal":{"delete":{"description":"Create or update a globally defined tool variation.","operationId":"variations#deleteGlobal","parameters":[{"description":"The ID of the variation to delete","in":"query","name":"variation_id","required":true,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/DeleteGlobalToolVariationResult","required":["variation_id"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/VariationsDeleteGlobalGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"deleteGlobal variations","tags":["variations"],"x-speakeasy-name-override":"deleteGlobal","x-speakeasy-react-hook":{"name":"deleteGlobalVariation"}}},"/rpc/variations.listGlobal":{"get":{"description":"List globally defined tool variations.","operationId":"variations#listGlobal","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/ListVariationsResult","required":["variations"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/VariationsListGlobalBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/VariationsListGlobalUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/VariationsListGlobalForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/VariationsListGlobalNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/VariationsListGlobalConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/VariationsListGlobalUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/VariationsListGlobalInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/VariationsListGlobalUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/VariationsListGlobalGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"listGlobal variations","tags":["variations"],"x-speakeasy-name-override":"listGlobal","x-speakeasy-react-hook":{"name":"GlobalVariations"}}},"/rpc/variations.upsertGlobal":{"post":{"description":"Create or update a globally defined tool variation.","operationId":"variations#upsertGlobal","parameters":[{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"},{"description":"API Key header","in":"header","name":"Gram-Key","required":false,"type":"string"},{"description":"project header","in":"header","name":"Gram-Project","required":false,"type":"string"},{"in":"body","name":"UpsertGlobalRequestBody","required":true,"schema":{"$ref":"#/definitions/VariationsUpsertGlobalRequestBody","required":["src_tool_name"]}}],"responses":{"200":{"description":"OK response.","schema":{"$ref":"#/definitions/UpsertGlobalToolVariationResult","required":["variation"]}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/VariationsUpsertGlobalGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_header_Gram-Project":null,"session_header_Gram-Session":null},{"apikey_header_Gram-Key":null,"project_slug_header_Gram-Project":null}],"summary":"upsertGlobal variations","tags":["variations"],"x-speakeasy-name-override":"upsertGlobal","x-speakeasy-react-hook":{"name":"UpsertGlobalVariation"}}},"/rpc/{project_slug}/slack.login":{"get":{"description":"Proxies to auth login through speakeasy oidc.","operationId":"slack#login","parameters":[{"in":"path","name":"project_slug","required":true,"type":"string"},{"description":"The dashboard location to return too","in":"query","name":"return_url","required":false,"type":"string"},{"description":"Session header","in":"header","name":"Gram-Session","required":false,"type":"string"}],"responses":{"307":{"description":"Temporary Redirect response.","headers":{"Location":{"description":"The URL to redirect to after authentication","type":"string"}}},"400":{"description":"Bad Request response.","schema":{"$ref":"#/definitions/SlackLoginBadRequestResponseBody"}},"401":{"description":"Unauthorized response.","schema":{"$ref":"#/definitions/SlackLoginUnauthorizedResponseBody"}},"403":{"description":"Forbidden response.","schema":{"$ref":"#/definitions/SlackLoginForbiddenResponseBody"}},"404":{"description":"Not Found response.","schema":{"$ref":"#/definitions/SlackLoginNotFoundResponseBody"}},"409":{"description":"Conflict response.","schema":{"$ref":"#/definitions/SlackLoginConflictResponseBody"}},"415":{"description":"Unsupported Media Type response.","schema":{"$ref":"#/definitions/SlackLoginUnsupportedMediaResponseBody"}},"422":{"description":"Unprocessable Entity response.","schema":{"$ref":"#/definitions/SlackLoginInvalidResponseBody"}},"500":{"description":"Internal Server Error response.","schema":{"$ref":"#/definitions/SlackLoginUnexpectedResponseBody"}},"502":{"description":"Bad Gateway response.","schema":{"$ref":"#/definitions/SlackLoginGatewayErrorResponseBody"}}},"schemes":["http"],"security":[{"project_slug_query_project_slug":null,"session_header_Gram-Session":null}],"summary":"login slack","tags":["slack"],"x-speakeasy-name-override":"slackLogin","x-speakeasy-react-hook":{"disabled":true}}}},"definitions":{"AddDeploymentPackageForm":{"title":"AddDeploymentPackageForm","type":"object","properties":{"name":{"type":"string","description":"The name of the package.","example":"Laborum neque aut."},"version":{"type":"string","description":"The version of the package.","example":"Dolore dolor quaerat illo aut necessitatibus adipisci."}},"example":{"name":"Repellat esse nisi.","version":"Rerum ducimus."},"required":["name"]},"AddFunctionsForm":{"title":"AddFunctionsForm","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the functions file from the assets service.","example":"Perferendis ea quis."},"name":{"type":"string","description":"The functions file display name.","example":"Accusantium unde facilis non."},"runtime":{"type":"string","description":"The runtime to use when executing functions. Allowed values are: nodejs:22, python:3.12.","example":"Ducimus id animi dolor pariatur."},"slug":{"type":"string","description":"A URL-friendly string that identifies the functions file. Usually derived from the name.","example":"gp7","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"asset_id":"Eos corrupti ut qui optio aut sed.","name":"Saepe recusandae delectus.","runtime":"Aliquid vel illo voluptatem.","slug":"f1q"},"required":["asset_id","name","slug","runtime"]},"AddOpenAPIv3DeploymentAssetForm":{"title":"AddOpenAPIv3DeploymentAssetForm","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the uploaded asset.","example":"Ut nam."},"name":{"type":"string","description":"The name to give the document as it will be displayed in UIs.","example":"Perferendis iste eum repudiandae nostrum facere iure."},"slug":{"type":"string","description":"The slug to give the document as it will be displayed in URLs.","example":"xgr","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"asset_id":"Maxime error libero temporibus provident quaerat et.","name":"Commodi quidem esse.","slug":"pbu"},"required":["asset_id","name","slug"]},"AddPackageForm":{"title":"AddPackageForm","type":"object","properties":{"name":{"type":"string","description":"The name of the package to add.","example":"Eum eligendi sit."},"version":{"type":"string","description":"The version of the package to add. If omitted, the latest version will be used.","example":"Et aut dolores iure."}},"example":{"name":"In quisquam dolores est.","version":"Odit dolor."},"required":["name"]},"Asset":{"title":"Asset","type":"object","properties":{"content_length":{"type":"integer","description":"The content length of the asset","example":7568219703724083679,"format":"int64"},"content_type":{"type":"string","description":"The content type of the asset","example":"Distinctio ut."},"created_at":{"type":"string","description":"The creation date of the asset.","example":"1992-09-06T07:07:46Z","format":"date-time"},"id":{"type":"string","description":"The ID of the asset","example":"Qui et."},"kind":{"type":"string","example":"openapiv3","enum":["openapiv3","image","functions","unknown"]},"sha256":{"type":"string","description":"The SHA256 hash of the asset","example":"Quas voluptatum non sed nemo odit similique."},"updated_at":{"type":"string","description":"The last update date of the asset.","example":"1972-08-14T23:24:26Z","format":"date-time"}},"example":{"content_length":6888545932452624070,"content_type":"Consectetur similique ut exercitationem repudiandae sed corrupti.","created_at":"1988-10-15T20:43:45Z","id":"Recusandae voluptatem autem non et nostrum eveniet.","kind":"functions","sha256":"Qui saepe.","updated_at":"1993-04-07T03:55:08Z"},"required":["id","kind","sha256","content_type","content_length","created_at","updated_at"]},"AssetsListAssetsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsListAssetsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeImageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3BadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3ConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3ForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3GatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3InvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3InvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3NotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3UnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3UnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsServeOpenAPIv3UnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadFunctionsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadImageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3BadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3ConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3ForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3GatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3InvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3InvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3NotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3UnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3UnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AssetsUploadOpenAPIv3UnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthCallbackUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoResponseBody":{"title":"AuthInfoResponseBody","type":"object","properties":{"active_organization_id":{"type":"string","example":"Non veritatis velit labore velit aut."},"gram_account_type":{"type":"string","example":"Et consectetur."},"is_admin":{"type":"boolean","example":false},"organizations":{"type":"array","items":{"$ref":"#/definitions/OrganizationEntry"},"example":[{"id":"Eveniet voluptatem quae totam quisquam laborum qui.","name":"Sunt quia.","projects":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}],"slug":"Et eos minima ut assumenda similique.","sso_connection_id":"Maiores dolore consequatur voluptate quia qui consectetur.","user_workspace_slugs":["Laboriosam voluptates quisquam possimus.","Fuga ratione voluptatem.","Aspernatur repellendus.","Consectetur et vel."]},{"id":"Eveniet voluptatem quae totam quisquam laborum qui.","name":"Sunt quia.","projects":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}],"slug":"Et eos minima ut assumenda similique.","sso_connection_id":"Maiores dolore consequatur voluptate quia qui consectetur.","user_workspace_slugs":["Laboriosam voluptates quisquam possimus.","Fuga ratione voluptatem.","Aspernatur repellendus.","Consectetur et vel."]},{"id":"Eveniet voluptatem quae totam quisquam laborum qui.","name":"Sunt quia.","projects":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}],"slug":"Et eos minima ut assumenda similique.","sso_connection_id":"Maiores dolore consequatur voluptate quia qui consectetur.","user_workspace_slugs":["Laboriosam voluptates quisquam possimus.","Fuga ratione voluptatem.","Aspernatur repellendus.","Consectetur et vel."]},{"id":"Eveniet voluptatem quae totam quisquam laborum qui.","name":"Sunt quia.","projects":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}],"slug":"Et eos minima ut assumenda similique.","sso_connection_id":"Maiores dolore consequatur voluptate quia qui consectetur.","user_workspace_slugs":["Laboriosam voluptates quisquam possimus.","Fuga ratione voluptatem.","Aspernatur repellendus.","Consectetur et vel."]}]},"user_display_name":{"type":"string","example":"Maxime assumenda labore quas rem quibusdam."},"user_email":{"type":"string","example":"Facere quaerat aut doloribus necessitatibus nihil."},"user_id":{"type":"string","example":"Quam accusamus provident dolorem reiciendis ea."},"user_photo_url":{"type":"string","example":"Nesciunt blanditiis distinctio."},"user_signature":{"type":"string","example":"Sit eos aut ut molestiae itaque quia."}},"example":{"active_organization_id":"Facilis non.","gram_account_type":"Optio architecto.","is_admin":true,"organizations":[{"id":"Eveniet voluptatem quae totam quisquam laborum qui.","name":"Sunt quia.","projects":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}],"slug":"Et eos minima ut assumenda similique.","sso_connection_id":"Maiores dolore consequatur voluptate quia qui consectetur.","user_workspace_slugs":["Laboriosam voluptates quisquam possimus.","Fuga ratione voluptatem.","Aspernatur repellendus.","Consectetur et vel."]},{"id":"Eveniet voluptatem quae totam quisquam laborum qui.","name":"Sunt quia.","projects":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}],"slug":"Et eos minima ut assumenda similique.","sso_connection_id":"Maiores dolore consequatur voluptate quia qui consectetur.","user_workspace_slugs":["Laboriosam voluptates quisquam possimus.","Fuga ratione voluptatem.","Aspernatur repellendus.","Consectetur et vel."]},{"id":"Eveniet voluptatem quae totam quisquam laborum qui.","name":"Sunt quia.","projects":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}],"slug":"Et eos minima ut assumenda similique.","sso_connection_id":"Maiores dolore consequatur voluptate quia qui consectetur.","user_workspace_slugs":["Laboriosam voluptates quisquam possimus.","Fuga ratione voluptatem.","Aspernatur repellendus.","Consectetur et vel."]}],"user_display_name":"Ea itaque officiis doloribus praesentium.","user_email":"Repellat nulla voluptates eos.","user_id":"Distinctio voluptatem maiores odio quia consequatur vitae.","user_photo_url":"Repellendus qui.","user_signature":"Quos repellat in quia sed molestias."},"required":["user_id","user_email","is_admin","active_organization_id","organizations","gram_account_type"]},"AuthInfoUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthInfoUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLoginUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthLogoutUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterRequestBody":{"title":"AuthRegisterRequestBody","type":"object","properties":{"org_name":{"type":"string","description":"The name of the org to register","example":"Error sunt ducimus dignissimos eos."}},"example":{"org_name":"Dolor id quidem non qui."},"required":["org_name"]},"AuthRegisterUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthRegisterUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"AuthSwitchScopesUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"CanonicalToolAttributes":{"title":"CanonicalToolAttributes","type":"object","properties":{"confirm":{"type":"string","description":"Confirmation mode for the tool","example":"Non voluptatem voluptatem voluptas recusandae architecto quibusdam."},"confirm_prompt":{"type":"string","description":"Prompt for the confirmation","example":"Repellendus consequatur consectetur."},"description":{"type":"string","description":"Description of the tool","example":"Facilis quasi sit."},"name":{"type":"string","description":"The name of the tool","example":"Tempora occaecati doloremque reprehenderit."},"summarizer":{"type":"string","description":"Summarizer for the tool","example":"Temporibus mollitia aut aperiam."},"summary":{"type":"string","description":"Summary of the tool","example":"Alias ducimus ipsum doloribus assumenda."},"tags":{"type":"array","items":{"type":"string","example":"Officiis eum."},"description":"The tags list for this http tool","example":["Quis iusto eos tenetur.","Reprehenderit maxime reprehenderit.","Repellendus aut consequuntur sequi."]},"variation_id":{"type":"string","description":"The ID of the variation that was applied to the tool","example":"Explicabo et aut."}},"description":"The original details of a tool","example":{"confirm":"Maiores magni eligendi velit.","confirm_prompt":"Vel et.","description":"Exercitationem corporis.","name":"Sapiente ut ipsum.","summarizer":"Asperiores et maxime est illum.","summary":"Sunt culpa iusto non consequatur officiis.","tags":["Vel recusandae laudantium.","Voluptas deleniti suscipit dolore commodi ut.","Nobis eaque et ut accusantium."],"variation_id":"Optio quo qui hic at."},"required":["variation_id","name"]},"Chat":{"title":"Chat","type":"object","properties":{"created_at":{"type":"string","description":"When the chat was created.","example":"1987-11-24T11:45:08Z","format":"date-time"},"id":{"type":"string","description":"The ID of the chat","example":"Dolores non doloremque quisquam."},"messages":{"type":"array","items":{"$ref":"#/definitions/ChatMessage"},"description":"The list of messages in the chat","example":[{"content":"Eligendi ea aliquam sunt non.","created_at":"2002-12-25T11:34:16Z","finish_reason":"Minima voluptatibus ut nobis impedit.","id":"Ipsum voluptas quia.","model":"Maxime similique nobis hic sed fugit cum.","role":"Eaque quam.","tool_call_id":"Laborum eum nemo quisquam.","tool_calls":"Qui dicta et a quia.","user_id":"Similique aliquid itaque eos placeat."},{"content":"Eligendi ea aliquam sunt non.","created_at":"2002-12-25T11:34:16Z","finish_reason":"Minima voluptatibus ut nobis impedit.","id":"Ipsum voluptas quia.","model":"Maxime similique nobis hic sed fugit cum.","role":"Eaque quam.","tool_call_id":"Laborum eum nemo quisquam.","tool_calls":"Qui dicta et a quia.","user_id":"Similique aliquid itaque eos placeat."},{"content":"Eligendi ea aliquam sunt non.","created_at":"2002-12-25T11:34:16Z","finish_reason":"Minima voluptatibus ut nobis impedit.","id":"Ipsum voluptas quia.","model":"Maxime similique nobis hic sed fugit cum.","role":"Eaque quam.","tool_call_id":"Laborum eum nemo quisquam.","tool_calls":"Qui dicta et a quia.","user_id":"Similique aliquid itaque eos placeat."}]},"num_messages":{"type":"integer","description":"The number of messages in the chat","example":5070163592694380603,"format":"int64"},"title":{"type":"string","description":"The title of the chat","example":"Magni optio labore sed neque."},"updated_at":{"type":"string","description":"When the chat was last updated.","example":"2005-12-10T04:04:54Z","format":"date-time"},"user_id":{"type":"string","description":"The ID of the user who created the chat","example":"Eius rerum at."}},"example":{"created_at":"2004-05-28T07:31:36Z","id":"Eius vel soluta sed perferendis cum sequi.","messages":[{"content":"Eligendi ea aliquam sunt non.","created_at":"2002-12-25T11:34:16Z","finish_reason":"Minima voluptatibus ut nobis impedit.","id":"Ipsum voluptas quia.","model":"Maxime similique nobis hic sed fugit cum.","role":"Eaque quam.","tool_call_id":"Laborum eum nemo quisquam.","tool_calls":"Qui dicta et a quia.","user_id":"Similique aliquid itaque eos placeat."},{"content":"Eligendi ea aliquam sunt non.","created_at":"2002-12-25T11:34:16Z","finish_reason":"Minima voluptatibus ut nobis impedit.","id":"Ipsum voluptas quia.","model":"Maxime similique nobis hic sed fugit cum.","role":"Eaque quam.","tool_call_id":"Laborum eum nemo quisquam.","tool_calls":"Qui dicta et a quia.","user_id":"Similique aliquid itaque eos placeat."},{"content":"Eligendi ea aliquam sunt non.","created_at":"2002-12-25T11:34:16Z","finish_reason":"Minima voluptatibus ut nobis impedit.","id":"Ipsum voluptas quia.","model":"Maxime similique nobis hic sed fugit cum.","role":"Eaque quam.","tool_call_id":"Laborum eum nemo quisquam.","tool_calls":"Qui dicta et a quia.","user_id":"Similique aliquid itaque eos placeat."},{"content":"Eligendi ea aliquam sunt non.","created_at":"2002-12-25T11:34:16Z","finish_reason":"Minima voluptatibus ut nobis impedit.","id":"Ipsum voluptas quia.","model":"Maxime similique nobis hic sed fugit cum.","role":"Eaque quam.","tool_call_id":"Laborum eum nemo quisquam.","tool_calls":"Qui dicta et a quia.","user_id":"Similique aliquid itaque eos placeat."}],"num_messages":4905685832288200109,"title":"Quia quia occaecati voluptatem eveniet sit excepturi.","updated_at":"2005-04-10T06:13:54Z","user_id":"Vel hic et adipisci."},"required":["messages","id","title","user_id","num_messages","created_at","updated_at"]},"ChatCreditUsageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageResponseBody":{"title":"ChatCreditUsageResponseBody","type":"object","properties":{"credits_used":{"type":"number","description":"The number of credits remaining","example":0.14576436648282662,"format":"double"},"monthly_credits":{"type":"integer","description":"The number of monthly credits","example":8282333598583333051,"format":"int64"}},"example":{"credits_used":0.4792198243955732,"monthly_credits":8081525388741486412},"required":["credits_used","monthly_credits"]},"ChatCreditUsageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatCreditUsageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatListChatsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ChatLoadChatUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ChatMessage":{"title":"ChatMessage","type":"object","properties":{"content":{"type":"string","description":"The content of the message","example":"Molestiae voluptatem consequuntur."},"created_at":{"type":"string","description":"When the message was created.","example":"1990-02-23T04:32:35Z","format":"date-time"},"finish_reason":{"type":"string","description":"The finish reason of the message","example":"Repellendus quis veniam voluptatem sed nisi nostrum."},"id":{"type":"string","description":"The ID of the message","example":"Veniam facilis omnis libero."},"model":{"type":"string","description":"The model that generated the message","example":"Et quibusdam aut iusto culpa porro aspernatur."},"role":{"type":"string","description":"The role of the message","example":"Praesentium voluptatibus."},"tool_call_id":{"type":"string","description":"The tool call ID of the message","example":"Laborum impedit aut accusantium dolore molestiae porro."},"tool_calls":{"type":"string","description":"The tool calls in the message as a JSON blob","example":"Rerum sed aspernatur molestiae enim magnam."},"user_id":{"type":"string","description":"The ID of the user who created the message","example":"Assumenda sit expedita veniam dolores amet."}},"example":{"content":"Reprehenderit dolore ut ipsam voluptates est.","created_at":"1997-04-01T16:47:00Z","finish_reason":"Ab molestiae repudiandae ad doloribus incidunt.","id":"Eos et ut sint eum.","model":"Aliquid vel unde dolores autem qui consequatur.","role":"Praesentium vel autem distinctio tenetur.","tool_call_id":"Placeat neque maiores dolore vitae.","tool_calls":"Qui odio alias quae non.","user_id":"Veritatis repellat quia fuga impedit saepe."},"required":["id","role","model","created_at"]},"ChatOverview":{"title":"ChatOverview","type":"object","properties":{"created_at":{"type":"string","description":"When the chat was created.","example":"1974-05-11T20:47:27Z","format":"date-time"},"id":{"type":"string","description":"The ID of the chat","example":"Dolor consectetur occaecati excepturi eligendi impedit."},"num_messages":{"type":"integer","description":"The number of messages in the chat","example":251066692278777839,"format":"int64"},"title":{"type":"string","description":"The title of the chat","example":"Eum est quisquam."},"updated_at":{"type":"string","description":"When the chat was last updated.","example":"1985-12-30T08:32:18Z","format":"date-time"},"user_id":{"type":"string","description":"The ID of the user who created the chat","example":"Iure corrupti officiis autem aperiam optio."}},"example":{"created_at":"1995-08-07T22:48:22Z","id":"Optio ab rerum quos.","num_messages":1170969373511842788,"title":"Et eos ut in temporibus sunt.","updated_at":"2011-07-07T23:43:10Z","user_id":"Numquam ut esse non cum."},"required":["id","title","user_id","num_messages","created_at","updated_at"]},"CreateDeploymentResult":{"title":"CreateDeploymentResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"CreatePackageResult":{"title":"CreatePackageResult","type":"object","properties":{"package":{"$ref":"#/definitions/Package"}},"example":{"package":{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."}},"required":["package"]},"CreateProjectResult":{"title":"CreateProjectResult","type":"object","properties":{"project":{"$ref":"#/definitions/Project"}},"example":{"project":{"created_at":"1982-08-15T21:58:36Z","id":"Ut ipsa accusantium corrupti dolores nemo nesciunt.","logo_asset_id":"Omnis omnis sunt nesciunt impedit atque.","name":"Voluptatem incidunt pariatur omnis illum et officiis.","organization_id":"Qui velit eligendi tempora quis culpa molestiae.","slug":"j9a","updated_at":"1972-05-21T05:31:53Z"}},"required":["project"]},"CreatePromptTemplateResult":{"title":"CreatePromptTemplateResult","type":"object","properties":{"template":{"$ref":"#/definitions/PromptTemplate"}},"example":{"template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},"required":["template"]},"CustomDomain":{"title":"CustomDomain","type":"object","properties":{"activated":{"type":"boolean","description":"Whether the domain is activated in ingress","example":true},"created_at":{"type":"string","description":"When the custom domain was created.","example":"2005-01-22T07:09:39Z","format":"date-time"},"domain":{"type":"string","description":"The custom domain name","example":"Repudiandae exercitationem sapiente molestias."},"id":{"type":"string","description":"The ID of the custom domain","example":"Maxime eveniet rerum sed voluptatum."},"is_updating":{"type":"boolean","description":"The custom domain is actively being registered","example":true},"organization_id":{"type":"string","description":"The ID of the organization this domain belongs to","example":"Ut est."},"updated_at":{"type":"string","description":"When the custom domain was last updated.","example":"2009-01-08T16:28:35Z","format":"date-time"},"verified":{"type":"boolean","description":"Whether the domain is verified","example":true}},"example":{"activated":true,"created_at":"1988-04-13T21:36:45Z","domain":"Consectetur numquam doloribus atque dolore illum.","id":"At minima.","is_updating":true,"organization_id":"At esse autem.","updated_at":"1995-01-30T18:33:01Z","verified":true},"required":["id","organization_id","domain","verified","activated","created_at","updated_at","is_updating"]},"DeleteGlobalToolVariationResult":{"title":"DeleteGlobalToolVariationResult","type":"object","properties":{"variation_id":{"type":"string","description":"The ID of the variation that was deleted","example":"Fuga delectus illo odit iure."}},"example":{"variation_id":"Reprehenderit molestiae."},"required":["variation_id"]},"Deployment":{"title":"Deployment","type":"object","properties":{"cloned_from":{"type":"string","description":"The ID of the deployment that this deployment was cloned from.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"created_at":{"type":"string","description":"The creation date of the deployment.","example":"1972-03-14T06:52:00Z","format":"date-time"},"external_id":{"type":"string","description":"The external ID to refer to the deployment. This can be a git commit hash for example.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"external_url":{"type":"string","description":"The upstream URL a deployment can refer to. This can be a github url to a commit hash or pull request.","example":"Dolorem esse temporibus ea neque in nihil."},"functions_assets":{"type":"array","items":{"$ref":"#/definitions/DeploymentFunctions"},"description":"The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions.","example":[{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"},{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"},{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"}]},"functions_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":3320374569914302979,"format":"int64"},"github_pr":{"type":"string","description":"The github pull request that resulted in the deployment.","example":"1234"},"github_repo":{"type":"string","description":"The github repository in the form of \"owner/repo\".","example":"speakeasyapi/gram"},"github_sha":{"type":"string","description":"The commit hash that triggered the deployment.","example":"f33e693e9e12552043bc0ec5c37f1b8a9e076161"},"id":{"type":"string","description":"The ID to of the deployment.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"idempotency_key":{"type":"string","description":"A unique identifier that will mitigate against duplicate deployments.","example":"01jqq0ajmb4qh9eppz48dejr2m"},"openapiv3_assets":{"type":"array","items":{"$ref":"#/definitions/OpenAPIv3DeploymentAsset"},"description":"The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions.","example":[{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"},{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"},{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"}]},"openapiv3_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":7338445823993316849,"format":"int64"},"organization_id":{"type":"string","description":"The ID of the organization that the deployment belongs to.","example":"Ea ipsa."},"packages":{"type":"array","items":{"$ref":"#/definitions/DeploymentPackage"},"description":"The packages that were deployed.","example":[{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."},{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."},{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."}]},"project_id":{"type":"string","description":"The ID of the project that the deployment belongs to.","example":"Animi ad quae totam."},"status":{"type":"string","description":"The status of the deployment.","example":"Qui qui vitae amet rem."},"user_id":{"type":"string","description":"The ID of the user that created the deployment.","example":"Quis dolores inventore non."}},"example":{"cloned_from":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","created_at":"1977-01-14T23:39:21Z","external_id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","external_url":"Tenetur neque vitae ipsam nisi.","functions_assets":[{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"},{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"}],"functions_tool_count":8543955642656211498,"github_pr":"1234","github_repo":"speakeasyapi/gram","github_sha":"f33e693e9e12552043bc0ec5c37f1b8a9e076161","id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","idempotency_key":"01jqq0ajmb4qh9eppz48dejr2m","openapiv3_assets":[{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"},{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"},{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"}],"openapiv3_tool_count":3944793998878884637,"organization_id":"Debitis aut quibusdam facilis.","packages":[{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."},{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."},{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."}],"project_id":"Adipisci in.","status":"Et tenetur vero recusandae ducimus eum.","user_id":"Temporibus sint molestiae quo dicta atque."},"required":["id","created_at","organization_id","project_id","user_id","openapiv3_assets","status","packages","openapiv3_tool_count","functions_tool_count"]},"DeploymentFunctions":{"title":"DeploymentFunctions","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the uploaded asset.","example":"Est asperiores optio rem quae."},"id":{"type":"string","description":"The ID of the deployment asset.","example":"Dolorem unde maxime."},"name":{"type":"string","description":"The name to give the document as it will be displayed in UIs.","example":"Delectus quam qui laborum dolor."},"runtime":{"type":"string","description":"The runtime to use when executing functions.","example":"Voluptatem magni repellendus nostrum vitae."},"slug":{"type":"string","description":"The slug to give the document as it will be displayed in URLs.","example":"caz","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"asset_id":"Et non perspiciatis quasi qui.","id":"Dolorum repellat dolores dolores.","name":"Perferendis temporibus veniam.","runtime":"Qui odio eum.","slug":"n25"},"required":["id","asset_id","name","slug","runtime"]},"DeploymentLogEvent":{"title":"DeploymentLogEvent","type":"object","properties":{"attachment_id":{"type":"string","description":"The ID of the asset tied to the log event","example":"Voluptatibus magnam sint occaecati quo aut."},"attachment_type":{"type":"string","description":"The type of the asset tied to the log event","example":"Cumque minus modi repellat voluptas."},"created_at":{"type":"string","description":"The creation date of the log event","example":"Nesciunt aspernatur qui sit facilis officiis."},"event":{"type":"string","description":"The type of event that occurred","example":"Voluptates aut enim ducimus et est dolor."},"id":{"type":"string","description":"The ID of the log event","example":"Cum quisquam facere."},"message":{"type":"string","description":"The message of the log event","example":"Placeat aliquid voluptas ducimus qui ullam voluptates."}},"example":{"attachment_id":"Quos nam.","attachment_type":"Reiciendis animi numquam iste ad commodi deserunt.","created_at":"Vitae facere.","event":"Id recusandae.","id":"Incidunt ea accusamus et.","message":"Voluptatem pariatur."},"required":["id","created_at","event","message"]},"DeploymentPackage":{"title":"DeploymentPackage","type":"object","properties":{"id":{"type":"string","description":"The ID of the deployment package.","example":"Suscipit alias."},"name":{"type":"string","description":"The name of the package.","example":"Nulla consequuntur optio deleniti nihil perspiciatis."},"version":{"type":"string","description":"The version of the package.","example":"Rem quas."}},"example":{"id":"Esse dicta architecto omnis voluptatibus.","name":"Voluptas voluptatem explicabo aut repellendus accusamus ut.","version":"Perferendis repudiandae illum rerum iusto fugiat."},"required":["id","name","version"]},"DeploymentSummary":{"title":"DeploymentSummary","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the deployment.","example":"1991-06-26T16:06:56Z","format":"date-time"},"functions_asset_count":{"type":"integer","description":"The number of Functions assets.","example":4068059451335937714,"format":"int64"},"functions_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from Functions.","example":9138885583237034912,"format":"int64"},"id":{"type":"string","description":"The ID to of the deployment.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"openapiv3_asset_count":{"type":"integer","description":"The number of upstream OpenAPI assets.","example":6834946037220952121,"format":"int64"},"openapiv3_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":6241592695586659796,"format":"int64"},"status":{"type":"string","description":"The status of the deployment.","example":"Quia mollitia voluptates sequi beatae dolor."},"user_id":{"type":"string","description":"The ID of the user that created the deployment.","example":"Voluptatum a aspernatur quo incidunt animi."}},"example":{"created_at":"1995-11-09T12:58:53Z","functions_asset_count":4546625189441281592,"functions_tool_count":5840168869196590621,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":8136432753919795854,"openapiv3_tool_count":4101369320509725805,"status":"Autem nam.","user_id":"Cupiditate cumque debitis asperiores et."},"required":["id","created_at","user_id","status","openapiv3_asset_count","openapiv3_tool_count","functions_asset_count","functions_tool_count"]},"DeploymentsCreateDeploymentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentRequestBody":{"title":"DeploymentsCreateDeploymentRequestBody","type":"object","properties":{"external_id":{"type":"string","description":"The external ID to refer to the deployment. This can be a git commit hash for example.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"external_url":{"type":"string","description":"The upstream URL a deployment can refer to. This can be a github url to a commit hash or pull request.","example":"Molestiae molestias voluptatibus."},"functions":{"type":"array","items":{"$ref":"#/definitions/AddFunctionsForm"},"example":[{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"},{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"},{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"},{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"}]},"github_pr":{"type":"string","description":"The github pull request that resulted in the deployment.","example":"1234"},"github_repo":{"type":"string","description":"The github repository in the form of \"owner/repo\".","example":"speakeasyapi/gram"},"github_sha":{"type":"string","description":"The commit hash that triggered the deployment.","example":"f33e693e9e12552043bc0ec5c37f1b8a9e076161"},"openapiv3_assets":{"type":"array","items":{"$ref":"#/definitions/AddOpenAPIv3DeploymentAssetForm"},"example":[{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"},{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"},{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"}]},"packages":{"type":"array","items":{"$ref":"#/definitions/AddDeploymentPackageForm"},"example":[{"name":"Incidunt natus exercitationem est.","version":"Non odit laudantium eligendi quia sed."},{"name":"Incidunt natus exercitationem est.","version":"Non odit laudantium eligendi quia sed."},{"name":"Incidunt natus exercitationem est.","version":"Non odit laudantium eligendi quia sed."},{"name":"Incidunt natus exercitationem est.","version":"Non odit laudantium eligendi quia sed."}]}},"example":{"external_id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","external_url":"Fugiat consectetur temporibus animi quidem in.","functions":[{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"},{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"}],"github_pr":"1234","github_repo":"speakeasyapi/gram","github_sha":"f33e693e9e12552043bc0ec5c37f1b8a9e076161","openapiv3_assets":[{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"},{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"},{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"}],"packages":[{"name":"Incidunt natus exercitationem est.","version":"Non odit laudantium eligendi quia sed."},{"name":"Incidunt natus exercitationem est.","version":"Non odit laudantium eligendi quia sed."}]}},"DeploymentsCreateDeploymentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsCreateDeploymentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveRequestBody":{"title":"DeploymentsEvolveRequestBody","type":"object","properties":{"deployment_id":{"type":"string","description":"The ID of the deployment to evolve. If omitted, the latest deployment will be used.","example":"Totam omnis recusandae."},"exclude_functions":{"type":"array","items":{"type":"string","example":"Et nostrum."},"description":"The functions, identified by slug, to exclude from the new deployment when cloning a previous deployment.","example":["Fugit quaerat ea.","Totam recusandae."]},"exclude_openapiv3_assets":{"type":"array","items":{"type":"string","example":"Laboriosam placeat illo adipisci tempora ea."},"description":"The OpenAPI 3.x documents, identified by slug, to exclude from the new deployment when cloning a previous deployment.","example":["Et qui ducimus error repellat fugit ducimus.","Eum aut assumenda.","Omnis ut dolores et impedit omnis.","Dolorem et dolorum."]},"exclude_packages":{"type":"array","items":{"type":"string","example":"Quisquam quo."},"description":"The packages to exclude from the new deployment when cloning a previous deployment.","example":["Voluptatum aut sit.","Repudiandae fugit est sed sunt voluptates non."]},"upsert_functions":{"type":"array","items":{"$ref":"#/definitions/AddFunctionsForm"},"description":"The tool functions to upsert in the new deployment.","example":[{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"},{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"},{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"}]},"upsert_openapiv3_assets":{"type":"array","items":{"$ref":"#/definitions/AddOpenAPIv3DeploymentAssetForm"},"description":"The OpenAPI 3.x documents to upsert in the new deployment.","example":[{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"},{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"},{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"}]},"upsert_packages":{"type":"array","items":{"$ref":"#/definitions/AddPackageForm"},"description":"The packages to upsert in the new deployment.","example":[{"name":"Molestiae maiores voluptatem.","version":"Cum vel aliquid rerum at repellendus est."},{"name":"Molestiae maiores voluptatem.","version":"Cum vel aliquid rerum at repellendus est."},{"name":"Molestiae maiores voluptatem.","version":"Cum vel aliquid rerum at repellendus est."},{"name":"Molestiae maiores voluptatem.","version":"Cum vel aliquid rerum at repellendus est."}]}},"example":{"deployment_id":"Mollitia reiciendis ut sed quos est.","exclude_functions":["Est doloremque natus earum cupiditate.","Quis atque molestias."],"exclude_openapiv3_assets":["Maiores soluta a molestiae eligendi.","Incidunt architecto cumque eveniet aspernatur et rerum."],"exclude_packages":["Quam aut enim animi ut.","Laborum dolor quia quis quasi nisi qui.","Assumenda in qui animi ducimus dolorem sint.","Labore atque sint libero."],"upsert_functions":[{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"},{"asset_id":"Quo dolorem enim necessitatibus ducimus recusandae.","name":"Odio omnis praesentium.","runtime":"Asperiores necessitatibus accusamus repudiandae iste non.","slug":"hmj"}],"upsert_openapiv3_assets":[{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"},{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"},{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"},{"asset_id":"Nobis blanditiis omnis.","name":"Cumque qui laboriosam vel.","slug":"ycy"}],"upsert_packages":[{"name":"Molestiae maiores voluptatem.","version":"Cum vel aliquid rerum at repellendus est."},{"name":"Molestiae maiores voluptatem.","version":"Cum vel aliquid rerum at repellendus est."},{"name":"Molestiae maiores voluptatem.","version":"Cum vel aliquid rerum at repellendus est."},{"name":"Molestiae maiores voluptatem.","version":"Cum vel aliquid rerum at repellendus est."}]}},"DeploymentsEvolveUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsEvolveUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetActiveDeploymentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentLogsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetDeploymentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsGetLatestDeploymentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsListDeploymentsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployRequestBody":{"title":"DeploymentsRedeployRequestBody","type":"object","properties":{"deployment_id":{"type":"string","description":"The ID of the deployment to redeploy.","example":"Voluptas non vel unde quam esse rerum."}},"example":{"deployment_id":"Ipsum quidem."},"required":["deployment_id"]},"DeploymentsRedeployUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DeploymentsRedeployUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainRequestBody":{"title":"DomainsCreateDomainRequestBody","type":"object","properties":{"domain":{"type":"string","description":"The custom domain","example":"At fugiat debitis."}},"example":{"domain":"Quae qui dolorum."},"required":["domain"]},"DomainsCreateDomainUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsCreateDomainUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsDeleteDomainUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"DomainsGetDomainUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"Environment":{"title":"Environment","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the environment","example":"1997-02-08T17:00:25Z","format":"date-time"},"description":{"type":"string","description":"The description of the environment","example":"Itaque ut quisquam rerum voluptates veritatis."},"entries":{"type":"array","items":{"$ref":"#/definitions/EnvironmentEntry"},"description":"List of environment entries","example":[{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."}]},"id":{"type":"string","description":"The ID of the environment","example":"Itaque adipisci blanditiis voluptas eum hic quam."},"name":{"type":"string","description":"The name of the environment","example":"Quia et voluptas."},"organization_id":{"type":"string","description":"The organization ID this environment belongs to","example":"Natus et."},"project_id":{"type":"string","description":"The project ID this environment belongs to","example":"Dolorum officiis qui minus consequatur."},"slug":{"type":"string","description":"The slug identifier for the environment","example":"0lg","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"updated_at":{"type":"string","description":"When the environment was last updated","example":"1972-10-30T23:10:48Z","format":"date-time"}},"example":{"created_at":"1978-08-16T19:08:54Z","description":"Ut qui cum hic qui blanditiis beatae.","entries":[{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."}],"id":"Voluptates voluptatem repudiandae.","name":"Minima et quo.","organization_id":"Aut dolorum eum eum nihil ducimus.","project_id":"Laborum qui sed.","slug":"9q0","updated_at":"1976-05-01T10:42:14Z"},"required":["id","organization_id","project_id","name","slug","entries","created_at","updated_at"]},"EnvironmentEntry":{"title":"EnvironmentEntry","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the environment entry","example":"2001-08-21T09:03:00Z","format":"date-time"},"name":{"type":"string","description":"The name of the environment variable","example":"Nesciunt ab autem incidunt."},"updated_at":{"type":"string","description":"When the environment entry was last updated","example":"1988-08-15T04:26:29Z","format":"date-time"},"value":{"type":"string","description":"Redacted values of the environment variable","example":"Qui quis."}},"description":"A single environment entry","example":{"created_at":"1997-10-19T12:05:04Z","name":"Molestiae quaerat similique quia dolorum natus quam.","updated_at":"1979-09-25T18:24:27Z","value":"Consequatur dolores est perspiciatis doloribus nihil."},"required":["name","value","created_at","updated_at"]},"EnvironmentEntryInput":{"title":"EnvironmentEntryInput","type":"object","properties":{"name":{"type":"string","description":"The name of the environment variable","example":"Est et earum sed neque sit dolor."},"value":{"type":"string","description":"The value of the environment variable","example":"Eum quam."}},"description":"A single environment entry","example":{"name":"Non praesentium eos.","value":"Sapiente accusamus exercitationem nam provident tempora assumenda."},"required":["name","value"]},"EnvironmentsCreateEnvironmentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentRequestBody":{"title":"EnvironmentsCreateEnvironmentRequestBody","type":"object","properties":{"description":{"type":"string","description":"Optional description of the environment","example":"Animi quisquam quia aspernatur ut."},"entries":{"type":"array","items":{"$ref":"#/definitions/EnvironmentEntryInput"},"description":"List of environment variable entries","example":[{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."},{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."},{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."},{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."}]},"name":{"type":"string","description":"The name of the environment","example":"Quia sint."},"organization_id":{"type":"string","description":"The organization ID this environment belongs to","example":"Mollitia fugit commodi."}},"example":{"description":"Culpa ea consequatur.","entries":[{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."},{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."}],"name":"Sed optio quidem rem aut assumenda earum.","organization_id":"Sed ratione eius qui eligendi."},"required":["organization_id","name","entries"]},"EnvironmentsCreateEnvironmentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsCreateEnvironmentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsDeleteEnvironmentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsListEnvironmentsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentRequestBody":{"title":"EnvironmentsUpdateEnvironmentRequestBody","type":"object","properties":{"description":{"type":"string","description":"The description of the environment","example":"Occaecati vel nulla."},"entries_to_remove":{"type":"array","items":{"type":"string","example":"Et nihil omnis ullam est ipsum doloribus."},"description":"List of environment entry names to remove","example":["Aperiam sunt nesciunt et magni laborum.","Autem amet quae nemo dolor."]},"entries_to_update":{"type":"array","items":{"$ref":"#/definitions/EnvironmentEntryInput"},"description":"List of environment entries to update or create","example":[{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."},{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."},{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."},{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."}]},"name":{"type":"string","description":"The name of the environment","example":"Vero vitae voluptatem aspernatur corporis."}},"example":{"description":"Possimus expedita alias cumque omnis fugiat recusandae.","entries_to_remove":["Est veniam voluptatem ipsam voluptatem.","Voluptatum ut sed qui."],"entries_to_update":[{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."},{"name":"Accusamus illum aut quo voluptas.","value":"Culpa nobis fuga quibusdam maxime eum natus."}],"name":"Expedita placeat voluptatum consequatur aliquid debitis."},"required":["entries_to_update","entries_to_remove"]},"EnvironmentsUpdateEnvironmentUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EnvironmentsUpdateEnvironmentUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"EvolveResult":{"title":"EvolveResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"ExternalOAuthServer":{"title":"ExternalOAuthServer","type":"object","properties":{"created_at":{"type":"string","description":"When the external OAuth server was created.","example":"1992-04-04T17:01:07Z","format":"date-time"},"id":{"type":"string","description":"The ID of the external OAuth server","example":"Totam deserunt nulla nihil enim ut sunt."},"metadata":{"description":"The metadata for the external OAuth server","example":"Quaerat nesciunt deserunt veniam."},"project_id":{"type":"string","description":"The project ID this external OAuth server belongs to","example":"Porro reiciendis."},"slug":{"type":"string","description":"The slug of the external OAuth server","example":"m1x","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"updated_at":{"type":"string","description":"When the external OAuth server was last updated.","example":"1970-12-11T11:24:29Z","format":"date-time"}},"example":{"created_at":"1975-06-18T20:40:19Z","id":"Magnam labore error quas est earum quibusdam.","metadata":"Dolorum velit.","project_id":"Quos aut atque nostrum vel eligendi ad.","slug":"0tt","updated_at":"2013-10-19T13:04:47Z"},"required":["id","project_id","slug","metadata","created_at","updated_at"]},"ExternalOAuthServerForm":{"title":"ExternalOAuthServerForm","type":"object","properties":{"metadata":{"description":"The metadata for the external OAuth server","example":"Repellat autem eos autem velit et similique."},"slug":{"type":"string","description":"The slug of the external OAuth server","example":"y3t","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"metadata":"Doloremque consectetur alias ea recusandae hic adipisci.","slug":"x20"},"required":["slug","metadata"]},"GetActiveDeploymentResult":{"title":"GetActiveDeploymentResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"GetDeploymentLogsResult":{"title":"GetDeploymentLogsResult","type":"object","properties":{"events":{"type":"array","items":{"$ref":"#/definitions/DeploymentLogEvent"},"description":"The logs for the deployment","example":[{"attachment_id":"Perferendis fuga facere.","attachment_type":"Et pariatur qui.","created_at":"Dolores culpa iusto voluptatem.","event":"Aut neque exercitationem earum.","id":"Autem repudiandae id eveniet.","message":"Cumque sint accusamus aliquam."},{"attachment_id":"Perferendis fuga facere.","attachment_type":"Et pariatur qui.","created_at":"Dolores culpa iusto voluptatem.","event":"Aut neque exercitationem earum.","id":"Autem repudiandae id eveniet.","message":"Cumque sint accusamus aliquam."},{"attachment_id":"Perferendis fuga facere.","attachment_type":"Et pariatur qui.","created_at":"Dolores culpa iusto voluptatem.","event":"Aut neque exercitationem earum.","id":"Autem repudiandae id eveniet.","message":"Cumque sint accusamus aliquam."}]},"next_cursor":{"type":"string","description":"The cursor to fetch results from","example":"Temporibus deleniti voluptatem."},"status":{"type":"string","description":"The status of the deployment","example":"Beatae enim dolores laudantium pariatur esse consequatur."}},"example":{"events":[{"attachment_id":"Perferendis fuga facere.","attachment_type":"Et pariatur qui.","created_at":"Dolores culpa iusto voluptatem.","event":"Aut neque exercitationem earum.","id":"Autem repudiandae id eveniet.","message":"Cumque sint accusamus aliquam."},{"attachment_id":"Perferendis fuga facere.","attachment_type":"Et pariatur qui.","created_at":"Dolores culpa iusto voluptatem.","event":"Aut neque exercitationem earum.","id":"Autem repudiandae id eveniet.","message":"Cumque sint accusamus aliquam."},{"attachment_id":"Perferendis fuga facere.","attachment_type":"Et pariatur qui.","created_at":"Dolores culpa iusto voluptatem.","event":"Aut neque exercitationem earum.","id":"Autem repudiandae id eveniet.","message":"Cumque sint accusamus aliquam."},{"attachment_id":"Perferendis fuga facere.","attachment_type":"Et pariatur qui.","created_at":"Dolores culpa iusto voluptatem.","event":"Aut neque exercitationem earum.","id":"Autem repudiandae id eveniet.","message":"Cumque sint accusamus aliquam."}],"next_cursor":"Qui voluptatibus ut at repellendus.","status":"Aut autem tenetur blanditiis illum neque."},"required":["events","status"]},"GetDeploymentResult":{"title":"GetDeploymentResult","type":"object","properties":{"cloned_from":{"type":"string","description":"The ID of the deployment that this deployment was cloned from.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"created_at":{"type":"string","description":"The creation date of the deployment.","example":"1994-06-21T11:14:28Z","format":"date-time"},"external_id":{"type":"string","description":"The external ID to refer to the deployment. This can be a git commit hash for example.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"external_url":{"type":"string","description":"The upstream URL a deployment can refer to. This can be a github url to a commit hash or pull request.","example":"Esse cumque qui."},"functions_assets":{"type":"array","items":{"$ref":"#/definitions/DeploymentFunctions"},"description":"The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions.","example":[{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"},{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"}]},"functions_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":2553167614810876416,"format":"int64"},"github_pr":{"type":"string","description":"The github pull request that resulted in the deployment.","example":"1234"},"github_repo":{"type":"string","description":"The github repository in the form of \"owner/repo\".","example":"speakeasyapi/gram"},"github_sha":{"type":"string","description":"The commit hash that triggered the deployment.","example":"f33e693e9e12552043bc0ec5c37f1b8a9e076161"},"id":{"type":"string","description":"The ID to of the deployment.","example":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6"},"idempotency_key":{"type":"string","description":"A unique identifier that will mitigate against duplicate deployments.","example":"01jqq0ajmb4qh9eppz48dejr2m"},"openapiv3_assets":{"type":"array","items":{"$ref":"#/definitions/OpenAPIv3DeploymentAsset"},"description":"The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions.","example":[{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"},{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"},{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"}]},"openapiv3_tool_count":{"type":"integer","description":"The number of tools in the deployment generated from OpenAPI documents.","example":7366981398943569096,"format":"int64"},"organization_id":{"type":"string","description":"The ID of the organization that the deployment belongs to.","example":"Minus voluptas molestias animi vitae sit ratione."},"packages":{"type":"array","items":{"$ref":"#/definitions/DeploymentPackage"},"description":"The packages that were deployed.","example":[{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."},{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."},{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."}]},"project_id":{"type":"string","description":"The ID of the project that the deployment belongs to.","example":"Nesciunt rerum."},"status":{"type":"string","description":"The status of the deployment.","example":"Aut consequuntur voluptatum quo molestiae quos vel."},"user_id":{"type":"string","description":"The ID of the user that created the deployment.","example":"Assumenda quis incidunt itaque id omnis deleniti."}},"example":{"cloned_from":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","created_at":"2007-10-09T19:41:11Z","external_id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","external_url":"Molestiae ea eius eius.","functions_assets":[{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"},{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"},{"asset_id":"Et aut corporis eligendi.","id":"Culpa quae qui dolore.","name":"Ut ut voluptate qui nihil dolorum.","runtime":"Quis placeat.","slug":"mmm"}],"functions_tool_count":112240585756153281,"github_pr":"1234","github_repo":"speakeasyapi/gram","github_sha":"f33e693e9e12552043bc0ec5c37f1b8a9e076161","id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","idempotency_key":"01jqq0ajmb4qh9eppz48dejr2m","openapiv3_assets":[{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"},{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"},{"asset_id":"Vitae in dolorem.","id":"Soluta ipsam provident.","name":"Tempore quisquam.","slug":"4d8"}],"openapiv3_tool_count":1915872851136596644,"organization_id":"Pariatur minus quos quia.","packages":[{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."},{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."},{"id":"Illum nihil et ipsa tempore est ipsam.","name":"Accusamus harum.","version":"Deleniti sapiente qui."}],"project_id":"Sit assumenda pariatur voluptatem vel.","status":"Cumque dolor quas sint.","user_id":"Quae beatae qui excepturi saepe."},"required":["id","created_at","organization_id","project_id","user_id","openapiv3_assets","status","packages","openapiv3_tool_count","functions_tool_count"]},"GetInstanceResult":{"title":"GetInstanceResult","type":"object","properties":{"description":{"type":"string","description":"The description of the toolset","example":"Voluptas sint enim."},"environment":{"$ref":"#/definitions/Environment"},"name":{"type":"string","description":"The name of the toolset","example":"Sequi ratione aut veritatis."},"prompt_templates":{"type":"array","items":{"$ref":"#/definitions/PromptTemplate"},"description":"The list of prompt templates","example":[{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}]},"security_variables":{"type":"array","items":{"$ref":"#/definitions/SecurityVariable"},"description":"The security variables that are relevant to the toolset","example":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}]},"server_variables":{"type":"array","items":{"$ref":"#/definitions/ServerVariable"},"description":"The server variables that are relevant to the toolset","example":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}]},"tools":{"type":"array","items":{"$ref":"#/definitions/Tool"},"description":"The list of tools","example":[{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}}]}},"example":{"description":"Eligendi sequi commodi.","environment":{"created_at":"2010-03-24T05:12:00Z","description":"Non repellendus quis tempore at.","entries":[{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."}],"id":"Ipsa aliquid incidunt corporis praesentium.","name":"Et nam consequatur nostrum et laudantium.","organization_id":"Reiciendis ea harum sint.","project_id":"Ad optio voluptatem sit ratione.","slug":"qgg","updated_at":"1979-01-22T05:33:58Z"},"name":"Rem fuga molestias.","prompt_templates":[{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"tools":[{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}}]},"required":["name","tools","environment"]},"GetIntegrationResult":{"title":"GetIntegrationResult","type":"object","properties":{"integration":{"$ref":"#/definitions/Integration"}},"example":{"integration":{"package_description":"Ex aut.","package_description_raw":"Et nihil perspiciatis.","package_id":"Accusamus aut adipisci iure.","package_image_asset_id":"Aut debitis voluptatem voluptatem tempore cupiditate cumque.","package_keywords":["Enim est atque quisquam ipsum.","Id libero et.","Cupiditate vel.","Ut id sapiente sed molestiae aut quis."],"package_name":"Omnis atque.","package_summary":"Explicabo est ipsa modi nisi.","package_title":"Veniam consectetur voluptatum ut.","package_url":"Dignissimos modi nemo aspernatur a voluptatem rerum.","tool_names":["Quisquam minus quo rerum.","Vel quos.","Natus quidem harum ex at eius repellendus.","Alias harum."],"version":"Consequatur doloremque magni reiciendis excepturi distinctio.","version_created_at":"2002-10-01T17:20:59Z","versions":[{"created_at":"1991-03-27T12:15:53Z","version":"Id et."},{"created_at":"1991-03-27T12:15:53Z","version":"Id et."},{"created_at":"1991-03-27T12:15:53Z","version":"Id et."},{"created_at":"1991-03-27T12:15:53Z","version":"Id et."}]}}},"GetLatestDeploymentResult":{"title":"GetLatestDeploymentResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"GetPromptTemplateResult":{"title":"GetPromptTemplateResult","type":"object","properties":{"template":{"$ref":"#/definitions/PromptTemplate"}},"example":{"template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},"required":["template"]},"GetSlackConnectionResult":{"title":"GetSlackConnectionResult","type":"object","properties":{"created_at":{"type":"string","description":"When the toolset was created.","example":"2014-12-05T01:36:36Z","format":"date-time"},"default_toolset_slug":{"type":"string","description":"The default toolset slug for this Slack connection","example":"Voluptatem est."},"slack_team_id":{"type":"string","description":"The ID of the connected Slack team","example":"Possimus illum culpa porro qui dolor commodi."},"slack_team_name":{"type":"string","description":"The name of the connected Slack team","example":"Quaerat vitae quos deleniti voluptate sed distinctio."},"updated_at":{"type":"string","description":"When the toolset was last updated.","example":"1984-10-07T06:01:04Z","format":"date-time"}},"example":{"created_at":"1970-11-04T21:55:34Z","default_toolset_slug":"Earum debitis est molestiae iste qui.","slack_team_id":"Ducimus officiis quaerat.","slack_team_name":"Aut voluptatum soluta.","updated_at":"2004-01-02T17:59:19Z"},"required":["slack_team_name","slack_team_id","default_toolset_slug","created_at","updated_at"]},"HTTPToolDefinition":{"title":"HTTPToolDefinition","type":"object","properties":{"canonical":{"$ref":"#/definitions/CanonicalToolAttributes"},"canonical_name":{"type":"string","description":"The canonical name of the tool. Will be the same as the name if there is no variation.","example":"Repudiandae explicabo cupiditate aut labore."},"confirm":{"type":"string","description":"Confirmation mode for the tool","example":"Est cumque adipisci eum qui."},"confirm_prompt":{"type":"string","description":"Prompt for the confirmation","example":"Quas dolorem alias facere aut sapiente aut."},"created_at":{"type":"string","description":"The creation date of the tool.","example":"2009-01-28T19:52:26Z","format":"date-time"},"default_server_url":{"type":"string","description":"The default server URL for the tool","example":"Et consequatur rerum ut est magni."},"deployment_id":{"type":"string","description":"The ID of the deployment","example":"Ad distinctio alias doloribus consequatur sunt."},"description":{"type":"string","description":"Description of the tool","example":"In velit."},"http_method":{"type":"string","description":"HTTP method for the request","example":"Eum nesciunt."},"id":{"type":"string","description":"The ID of the tool","example":"Nesciunt culpa possimus voluptates veniam nisi cupiditate."},"name":{"type":"string","description":"The name of the tool","example":"Accusamus dolores optio vel magnam et."},"openapiv3_document_id":{"type":"string","description":"The ID of the OpenAPI v3 document","example":"Aperiam doloribus cumque."},"openapiv3_operation":{"type":"string","description":"OpenAPI v3 operation","example":"Libero quisquam aspernatur molestias."},"package_name":{"type":"string","description":"The name of the source package","example":"Omnis qui."},"path":{"type":"string","description":"Path for the request","example":"Porro est ratione possimus."},"project_id":{"type":"string","description":"The ID of the project","example":"Dignissimos earum voluptate id aspernatur."},"response_filter":{"$ref":"#/definitions/ResponseFilter"},"schema":{"type":"string","description":"JSON schema for the request","example":"Ut ipsum dolores et sapiente eveniet."},"schema_version":{"type":"string","description":"Version of the schema","example":"Amet consequatur tempore."},"security":{"type":"string","description":"Security requirements for the underlying HTTP endpoint","example":"Quis et accusantium dolorem illum."},"summarizer":{"type":"string","description":"Summarizer for the tool","example":"Suscipit mollitia debitis dolores et eaque."},"summary":{"type":"string","description":"Summary of the tool","example":"Odit maxime qui."},"tags":{"type":"array","items":{"type":"string","example":"Alias totam excepturi debitis aut veritatis veritatis."},"description":"The tags list for this http tool","example":["Quis provident officiis nam.","Quia eos reiciendis voluptas molestias ipsum qui."]},"tool_urn":{"type":"string","description":"The URN of this tool","example":"Accusantium sint suscipit id necessitatibus occaecati."},"updated_at":{"type":"string","description":"The last update date of the tool.","example":"2009-02-04T16:22:18Z","format":"date-time"},"variation":{"$ref":"#/definitions/ToolVariation"}},"description":"An HTTP tool","example":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Rerum et doloribus est dolores.","confirm":"Unde provident ut quia.","confirm_prompt":"Quisquam odio rem dolor repellat voluptas.","created_at":"2009-12-11T04:19:54Z","default_server_url":"Id labore illo aliquam adipisci non.","deployment_id":"Omnis quia consequatur delectus.","description":"Qui repellendus.","http_method":"Ut quod laboriosam.","id":"Deleniti ab vel.","name":"Corrupti excepturi.","openapiv3_document_id":"Harum pariatur nihil nisi similique harum perferendis.","openapiv3_operation":"Et alias rerum.","package_name":"Aut ut.","path":"Beatae deleniti blanditiis et commodi ratione.","project_id":"Impedit illum.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Ut nulla.","schema_version":"Autem rerum excepturi quia et.","security":"Voluptatibus nihil aliquid eius soluta deserunt.","summarizer":"Soluta velit sint.","summary":"Ea aliquam neque reiciendis omnis necessitatibus et.","tags":["Tempore consectetur ea.","Officiis sed maiores rerum.","Iste similique.","Illo voluptas ut quis officia."],"tool_urn":"Corrupti rerum.","updated_at":"1991-11-07T22:31:36Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"required":["summary","tags","http_method","path","schema","deployment_id","id","project_id","name","canonical_name","description","tool_urn","created_at","updated_at"]},"InstancesGetInstanceBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"InstancesGetInstanceUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"Integration":{"title":"Integration","type":"object","properties":{"package_description":{"type":"string","example":"Porro voluptas ea harum expedita nihil illo."},"package_description_raw":{"type":"string","example":"Dolorem quis qui et excepturi."},"package_id":{"type":"string","example":"Est eos."},"package_image_asset_id":{"type":"string","example":"Autem deleniti molestiae quae."},"package_keywords":{"type":"array","items":{"type":"string","example":"Et voluptatem molestiae."},"example":["Fugiat est.","Fuga at molestias consequatur perferendis saepe."]},"package_name":{"type":"string","example":"Neque facilis blanditiis qui."},"package_summary":{"type":"string","example":"Est earum numquam aliquid voluptatum."},"package_title":{"type":"string","example":"Distinctio rerum."},"package_url":{"type":"string","example":"Non dolorem laudantium itaque sed ut repellat."},"tool_names":{"type":"array","items":{"type":"string","example":"Totam aut."},"example":["Non atque cumque eos reiciendis et nemo.","Tempora velit.","Itaque qui ea aut velit repellendus unde."]},"version":{"type":"string","description":"The latest version of the integration","example":"Alias necessitatibus non qui."},"version_created_at":{"type":"string","example":"1979-06-08T01:10:23Z","format":"date-time"},"versions":{"type":"array","items":{"$ref":"#/definitions/IntegrationVersion"},"example":[{"created_at":"1991-03-27T12:15:53Z","version":"Id et."},{"created_at":"1991-03-27T12:15:53Z","version":"Id et."}]}},"example":{"package_description":"Eligendi eligendi.","package_description_raw":"Pariatur nostrum ut voluptates illo esse fuga.","package_id":"Magni nobis illum placeat ut possimus laborum.","package_image_asset_id":"Maiores voluptatem quibusdam earum temporibus voluptatibus.","package_keywords":["Accusantium molestias esse ducimus ut.","Enim ipsum.","Odit dolore est quia laborum perspiciatis.","Quo neque sint quidem animi totam consequatur."],"package_name":"Perspiciatis ut aspernatur ea dolores veritatis consectetur.","package_summary":"Praesentium et minus suscipit.","package_title":"Enim autem cumque sint provident laborum.","package_url":"Possimus et alias perspiciatis consequatur eligendi atque.","tool_names":["Aspernatur dolorum ut.","Iste adipisci cum repellendus tempore voluptatem corporis.","Omnis sed repellendus cum ut.","Consequatur sed illum."],"version":"Tempore maiores assumenda.","version_created_at":"1980-06-27T17:10:18Z","versions":[{"created_at":"1991-03-27T12:15:53Z","version":"Id et."},{"created_at":"1991-03-27T12:15:53Z","version":"Id et."},{"created_at":"1991-03-27T12:15:53Z","version":"Id et."},{"created_at":"1991-03-27T12:15:53Z","version":"Id et."}]},"required":["package_id","package_name","package_title","package_summary","version","version_created_at","tool_names"]},"IntegrationEntry":{"title":"IntegrationEntry","type":"object","properties":{"package_id":{"type":"string","example":"Eum pariatur."},"package_image_asset_id":{"type":"string","example":"Corrupti blanditiis."},"package_keywords":{"type":"array","items":{"type":"string","example":"Rerum eum adipisci."},"example":["Eaque enim aut iusto enim sint.","Ut facere sed beatae quae ab voluptates.","Laudantium quod aperiam labore ex ipsum."]},"package_name":{"type":"string","example":"Aliquid et qui est consequatur provident ut."},"package_summary":{"type":"string","example":"Assumenda quas veritatis qui dolores cupiditate dolore."},"package_title":{"type":"string","example":"Laborum quae ad nihil."},"package_url":{"type":"string","example":"Temporibus ut ea."},"tool_names":{"type":"array","items":{"type":"string","example":"Unde minus velit et eum."},"example":["Rerum perferendis dolorem.","Sit omnis rem ipsum."]},"version":{"type":"string","example":"Earum libero velit aut autem ullam minima."},"version_created_at":{"type":"string","example":"2008-10-13T14:48:03Z","format":"date-time"}},"example":{"package_id":"Aut quia est esse ullam in sit.","package_image_asset_id":"Molestias unde tempora accusamus facere dicta.","package_keywords":["Consequatur ut quo ratione eveniet.","Doloremque neque labore."],"package_name":"Ducimus nostrum nostrum nihil.","package_summary":"Aut aliquid voluptatem odio sapiente.","package_title":"Iusto aperiam ut aut in voluptatem unde.","package_url":"Quo repellat voluptas molestiae.","tool_names":["Consequatur ipsa consectetur et et mollitia non.","Alias tempore maxime quae aperiam blanditiis et.","Enim non iure dolores et impedit beatae.","Alias est exercitationem."],"version":"Sunt velit omnis perferendis.","version_created_at":"1974-08-19T23:25:28Z"},"required":["package_id","package_name","version","version_created_at","tool_names"]},"IntegrationVersion":{"title":"IntegrationVersion","type":"object","properties":{"created_at":{"type":"string","example":"1975-11-01T01:30:15Z","format":"date-time"},"version":{"type":"string","example":"Voluptatum rerum odit."}},"example":{"created_at":"1975-09-30T23:26:35Z","version":"Quaerat asperiores distinctio."},"required":["version","created_at"]},"IntegrationsGetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsGetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"IntegrationsListUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"Key":{"title":"Key","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the key.","example":"1975-03-13T16:29:20Z","format":"date-time"},"created_by_user_id":{"type":"string","description":"The ID of the user who created this key","example":"Sed repellendus optio."},"id":{"type":"string","description":"The ID of the key","example":"Consequatur iusto nesciunt aut enim accusamus eius."},"key":{"type":"string","description":"The token of the api key (only returned on key creation)","example":"Debitis aliquam dolor repudiandae ut facere."},"key_prefix":{"type":"string","description":"The store prefix of the api key for recognition","example":"Qui qui eum numquam non."},"name":{"type":"string","description":"The name of the key","example":"Non adipisci voluptas nisi libero consectetur."},"organization_id":{"type":"string","description":"The organization ID this key belongs to","example":"Veritatis aspernatur officiis vel voluptas."},"project_id":{"type":"string","description":"The optional project ID this key is scoped to","example":"Saepe quibusdam magni rerum ut pariatur."},"scopes":{"type":"array","items":{"type":"string","example":"Aspernatur ratione non hic soluta beatae."},"description":"List of permission scopes for this key","example":["Excepturi excepturi distinctio provident cumque autem.","Corrupti fuga consequuntur veritatis necessitatibus aliquam perspiciatis.","Labore illo."]},"updated_at":{"type":"string","description":"When the key was last updated.","example":"1996-07-02T02:47:09Z","format":"date-time"}},"example":{"created_at":"2002-12-16T12:38:58Z","created_by_user_id":"Quod omnis dolorem veniam sint qui.","id":"Laboriosam consequuntur ut fugiat reprehenderit.","key":"Dolore totam officia.","key_prefix":"Tempore velit ea sit tenetur repellendus.","name":"Deserunt dolorem sapiente.","organization_id":"Qui laboriosam consectetur nisi saepe omnis.","project_id":"Neque consectetur laboriosam.","scopes":["Aut culpa.","Maxime labore neque velit.","Nisi odio."],"updated_at":"2001-02-23T06:33:49Z"},"required":["id","organization_id","created_by_user_id","name","key_prefix","scopes","created_at","updated_at"]},"KeysCreateKeyBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyRequestBody":{"title":"KeysCreateKeyRequestBody","type":"object","properties":{"name":{"type":"string","description":"The name of the key","example":"Velit et occaecati nam iure."},"scopes":{"type":"array","items":{"type":"string","example":"Est tempore."},"description":"The scopes of the key that determines its permissions.","example":["Quisquam aut et aperiam quod.","Cumque modi et hic."],"minItems":1}},"example":{"name":"Eos eveniet aut sed earum vel et.","scopes":["Mollitia voluptatibus et.","Qui autem."]},"required":["name","scopes"]},"KeysCreateKeyUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysCreateKeyUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysListKeysUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"KeysRevokeKeyUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ListAssetsResult":{"title":"ListAssetsResult","type":"object","properties":{"assets":{"type":"array","items":{"$ref":"#/definitions/Asset"},"description":"The list of assets","example":[{"content_length":1132377214323733000,"content_type":"Labore repellat ut quae nostrum.","created_at":"1995-06-21T21:27:59Z","id":"Magni sit nemo.","kind":"unknown","sha256":"Quas praesentium voluptatem quo.","updated_at":"1983-08-25T01:13:59Z"},{"content_length":1132377214323733000,"content_type":"Labore repellat ut quae nostrum.","created_at":"1995-06-21T21:27:59Z","id":"Magni sit nemo.","kind":"unknown","sha256":"Quas praesentium voluptatem quo.","updated_at":"1983-08-25T01:13:59Z"},{"content_length":1132377214323733000,"content_type":"Labore repellat ut quae nostrum.","created_at":"1995-06-21T21:27:59Z","id":"Magni sit nemo.","kind":"unknown","sha256":"Quas praesentium voluptatem quo.","updated_at":"1983-08-25T01:13:59Z"}]}},"example":{"assets":[{"content_length":1132377214323733000,"content_type":"Labore repellat ut quae nostrum.","created_at":"1995-06-21T21:27:59Z","id":"Magni sit nemo.","kind":"unknown","sha256":"Quas praesentium voluptatem quo.","updated_at":"1983-08-25T01:13:59Z"},{"content_length":1132377214323733000,"content_type":"Labore repellat ut quae nostrum.","created_at":"1995-06-21T21:27:59Z","id":"Magni sit nemo.","kind":"unknown","sha256":"Quas praesentium voluptatem quo.","updated_at":"1983-08-25T01:13:59Z"}]},"required":["assets"]},"ListChatsResult":{"title":"ListChatsResult","type":"object","properties":{"chats":{"type":"array","items":{"$ref":"#/definitions/ChatOverview"},"description":"The list of chats","example":[{"created_at":"2006-12-24T19:43:51Z","id":"Rerum rerum sequi et quia.","num_messages":4561151251526202671,"title":"Sunt eos optio.","updated_at":"2015-11-01T06:05:27Z","user_id":"Vel vel earum earum iure tempore."},{"created_at":"2006-12-24T19:43:51Z","id":"Rerum rerum sequi et quia.","num_messages":4561151251526202671,"title":"Sunt eos optio.","updated_at":"2015-11-01T06:05:27Z","user_id":"Vel vel earum earum iure tempore."},{"created_at":"2006-12-24T19:43:51Z","id":"Rerum rerum sequi et quia.","num_messages":4561151251526202671,"title":"Sunt eos optio.","updated_at":"2015-11-01T06:05:27Z","user_id":"Vel vel earum earum iure tempore."}]}},"example":{"chats":[{"created_at":"2006-12-24T19:43:51Z","id":"Rerum rerum sequi et quia.","num_messages":4561151251526202671,"title":"Sunt eos optio.","updated_at":"2015-11-01T06:05:27Z","user_id":"Vel vel earum earum iure tempore."},{"created_at":"2006-12-24T19:43:51Z","id":"Rerum rerum sequi et quia.","num_messages":4561151251526202671,"title":"Sunt eos optio.","updated_at":"2015-11-01T06:05:27Z","user_id":"Vel vel earum earum iure tempore."},{"created_at":"2006-12-24T19:43:51Z","id":"Rerum rerum sequi et quia.","num_messages":4561151251526202671,"title":"Sunt eos optio.","updated_at":"2015-11-01T06:05:27Z","user_id":"Vel vel earum earum iure tempore."}]},"required":["chats"]},"ListDeploymentResult":{"title":"ListDeploymentResult","type":"object","properties":{"items":{"type":"array","items":{"$ref":"#/definitions/DeploymentSummary"},"description":"A list of deployments","example":[{"created_at":"1981-08-07T02:48:32Z","functions_asset_count":119286388606153277,"functions_tool_count":7400311089740729027,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":3987120072830406976,"openapiv3_tool_count":6376994446366840476,"status":"Consequatur recusandae non tenetur rem.","user_id":"Accusamus quo reiciendis aut qui qui animi."},{"created_at":"1981-08-07T02:48:32Z","functions_asset_count":119286388606153277,"functions_tool_count":7400311089740729027,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":3987120072830406976,"openapiv3_tool_count":6376994446366840476,"status":"Consequatur recusandae non tenetur rem.","user_id":"Accusamus quo reiciendis aut qui qui animi."}]},"next_cursor":{"type":"string","description":"The cursor to fetch results from","example":"01jp3f054qc02gbcmpp0qmyzed"}},"example":{"items":[{"created_at":"1981-08-07T02:48:32Z","functions_asset_count":119286388606153277,"functions_tool_count":7400311089740729027,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":3987120072830406976,"openapiv3_tool_count":6376994446366840476,"status":"Consequatur recusandae non tenetur rem.","user_id":"Accusamus quo reiciendis aut qui qui animi."},{"created_at":"1981-08-07T02:48:32Z","functions_asset_count":119286388606153277,"functions_tool_count":7400311089740729027,"id":"bc5f4a555e933e6861d12edba4c2d87ef6caf8e6","openapiv3_asset_count":3987120072830406976,"openapiv3_tool_count":6376994446366840476,"status":"Consequatur recusandae non tenetur rem.","user_id":"Accusamus quo reiciendis aut qui qui animi."}],"next_cursor":"01jp3f054qc02gbcmpp0qmyzed"},"required":["items"]},"ListEnvironmentsResult":{"title":"ListEnvironmentsResult","type":"object","properties":{"environments":{"type":"array","items":{"$ref":"#/definitions/Environment"},"example":[{"created_at":"2010-03-24T05:12:00Z","description":"Non repellendus quis tempore at.","entries":[{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."}],"id":"Ipsa aliquid incidunt corporis praesentium.","name":"Et nam consequatur nostrum et laudantium.","organization_id":"Reiciendis ea harum sint.","project_id":"Ad optio voluptatem sit ratione.","slug":"qgg","updated_at":"1979-01-22T05:33:58Z"},{"created_at":"2010-03-24T05:12:00Z","description":"Non repellendus quis tempore at.","entries":[{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."}],"id":"Ipsa aliquid incidunt corporis praesentium.","name":"Et nam consequatur nostrum et laudantium.","organization_id":"Reiciendis ea harum sint.","project_id":"Ad optio voluptatem sit ratione.","slug":"qgg","updated_at":"1979-01-22T05:33:58Z"},{"created_at":"2010-03-24T05:12:00Z","description":"Non repellendus quis tempore at.","entries":[{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."}],"id":"Ipsa aliquid incidunt corporis praesentium.","name":"Et nam consequatur nostrum et laudantium.","organization_id":"Reiciendis ea harum sint.","project_id":"Ad optio voluptatem sit ratione.","slug":"qgg","updated_at":"1979-01-22T05:33:58Z"}]}},"example":{"environments":[{"created_at":"2010-03-24T05:12:00Z","description":"Non repellendus quis tempore at.","entries":[{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."}],"id":"Ipsa aliquid incidunt corporis praesentium.","name":"Et nam consequatur nostrum et laudantium.","organization_id":"Reiciendis ea harum sint.","project_id":"Ad optio voluptatem sit ratione.","slug":"qgg","updated_at":"1979-01-22T05:33:58Z"},{"created_at":"2010-03-24T05:12:00Z","description":"Non repellendus quis tempore at.","entries":[{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."},{"created_at":"1982-12-28T10:29:24Z","name":"Amet doloremque iste temporibus omnis sequi.","updated_at":"2005-02-03T00:23:45Z","value":"Quam aut qui amet ipsam voluptates id."}],"id":"Ipsa aliquid incidunt corporis praesentium.","name":"Et nam consequatur nostrum et laudantium.","organization_id":"Reiciendis ea harum sint.","project_id":"Ad optio voluptatem sit ratione.","slug":"qgg","updated_at":"1979-01-22T05:33:58Z"}]},"required":["environments"]},"ListIntegrationsResult":{"title":"ListIntegrationsResult","type":"object","properties":{"integrations":{"type":"array","items":{"$ref":"#/definitions/IntegrationEntry"},"description":"List of available third-party integrations","example":[{"package_id":"Qui explicabo.","package_image_asset_id":"Sint possimus dolore.","package_keywords":["At doloribus quis dolore eos corporis.","Ut deleniti alias facilis voluptatibus.","Nam sunt a eius vero voluptate.","Quis repellendus libero."],"package_name":"Beatae perspiciatis.","package_summary":"Veniam cum facere reprehenderit.","package_title":"Ut distinctio labore.","package_url":"In iure.","tool_names":["Ab ullam architecto saepe et voluptas amet.","Odit consectetur aut.","Enim asperiores dolore blanditiis amet.","Et ex cum quas maiores esse perspiciatis."],"version":"Amet qui illum.","version_created_at":"1992-04-30T06:25:58Z"},{"package_id":"Qui explicabo.","package_image_asset_id":"Sint possimus dolore.","package_keywords":["At doloribus quis dolore eos corporis.","Ut deleniti alias facilis voluptatibus.","Nam sunt a eius vero voluptate.","Quis repellendus libero."],"package_name":"Beatae perspiciatis.","package_summary":"Veniam cum facere reprehenderit.","package_title":"Ut distinctio labore.","package_url":"In iure.","tool_names":["Ab ullam architecto saepe et voluptas amet.","Odit consectetur aut.","Enim asperiores dolore blanditiis amet.","Et ex cum quas maiores esse perspiciatis."],"version":"Amet qui illum.","version_created_at":"1992-04-30T06:25:58Z"},{"package_id":"Qui explicabo.","package_image_asset_id":"Sint possimus dolore.","package_keywords":["At doloribus quis dolore eos corporis.","Ut deleniti alias facilis voluptatibus.","Nam sunt a eius vero voluptate.","Quis repellendus libero."],"package_name":"Beatae perspiciatis.","package_summary":"Veniam cum facere reprehenderit.","package_title":"Ut distinctio labore.","package_url":"In iure.","tool_names":["Ab ullam architecto saepe et voluptas amet.","Odit consectetur aut.","Enim asperiores dolore blanditiis amet.","Et ex cum quas maiores esse perspiciatis."],"version":"Amet qui illum.","version_created_at":"1992-04-30T06:25:58Z"}]}},"example":{"integrations":[{"package_id":"Qui explicabo.","package_image_asset_id":"Sint possimus dolore.","package_keywords":["At doloribus quis dolore eos corporis.","Ut deleniti alias facilis voluptatibus.","Nam sunt a eius vero voluptate.","Quis repellendus libero."],"package_name":"Beatae perspiciatis.","package_summary":"Veniam cum facere reprehenderit.","package_title":"Ut distinctio labore.","package_url":"In iure.","tool_names":["Ab ullam architecto saepe et voluptas amet.","Odit consectetur aut.","Enim asperiores dolore blanditiis amet.","Et ex cum quas maiores esse perspiciatis."],"version":"Amet qui illum.","version_created_at":"1992-04-30T06:25:58Z"},{"package_id":"Qui explicabo.","package_image_asset_id":"Sint possimus dolore.","package_keywords":["At doloribus quis dolore eos corporis.","Ut deleniti alias facilis voluptatibus.","Nam sunt a eius vero voluptate.","Quis repellendus libero."],"package_name":"Beatae perspiciatis.","package_summary":"Veniam cum facere reprehenderit.","package_title":"Ut distinctio labore.","package_url":"In iure.","tool_names":["Ab ullam architecto saepe et voluptas amet.","Odit consectetur aut.","Enim asperiores dolore blanditiis amet.","Et ex cum quas maiores esse perspiciatis."],"version":"Amet qui illum.","version_created_at":"1992-04-30T06:25:58Z"},{"package_id":"Qui explicabo.","package_image_asset_id":"Sint possimus dolore.","package_keywords":["At doloribus quis dolore eos corporis.","Ut deleniti alias facilis voluptatibus.","Nam sunt a eius vero voluptate.","Quis repellendus libero."],"package_name":"Beatae perspiciatis.","package_summary":"Veniam cum facere reprehenderit.","package_title":"Ut distinctio labore.","package_url":"In iure.","tool_names":["Ab ullam architecto saepe et voluptas amet.","Odit consectetur aut.","Enim asperiores dolore blanditiis amet.","Et ex cum quas maiores esse perspiciatis."],"version":"Amet qui illum.","version_created_at":"1992-04-30T06:25:58Z"}]}},"ListKeysResult":{"title":"ListKeysResult","type":"object","properties":{"keys":{"type":"array","items":{"$ref":"#/definitions/Key"},"example":[{"created_at":"2011-06-18T15:46:47Z","created_by_user_id":"Ad voluptatibus consequatur reiciendis voluptatum eveniet.","id":"Officiis eius suscipit magni voluptatem in.","key":"Adipisci consequatur provident deleniti consectetur.","key_prefix":"Quod soluta voluptatibus cum.","name":"Et enim deserunt et.","organization_id":"Illo rerum voluptatum.","project_id":"Aliquid ad.","scopes":["Aut veniam non quod voluptatem illo ut.","Soluta aperiam qui quidem qui animi.","Officia beatae voluptate."],"updated_at":"1983-04-24T21:27:28Z"},{"created_at":"2011-06-18T15:46:47Z","created_by_user_id":"Ad voluptatibus consequatur reiciendis voluptatum eveniet.","id":"Officiis eius suscipit magni voluptatem in.","key":"Adipisci consequatur provident deleniti consectetur.","key_prefix":"Quod soluta voluptatibus cum.","name":"Et enim deserunt et.","organization_id":"Illo rerum voluptatum.","project_id":"Aliquid ad.","scopes":["Aut veniam non quod voluptatem illo ut.","Soluta aperiam qui quidem qui animi.","Officia beatae voluptate."],"updated_at":"1983-04-24T21:27:28Z"}]}},"example":{"keys":[{"created_at":"2011-06-18T15:46:47Z","created_by_user_id":"Ad voluptatibus consequatur reiciendis voluptatum eveniet.","id":"Officiis eius suscipit magni voluptatem in.","key":"Adipisci consequatur provident deleniti consectetur.","key_prefix":"Quod soluta voluptatibus cum.","name":"Et enim deserunt et.","organization_id":"Illo rerum voluptatum.","project_id":"Aliquid ad.","scopes":["Aut veniam non quod voluptatem illo ut.","Soluta aperiam qui quidem qui animi.","Officia beatae voluptate."],"updated_at":"1983-04-24T21:27:28Z"},{"created_at":"2011-06-18T15:46:47Z","created_by_user_id":"Ad voluptatibus consequatur reiciendis voluptatum eveniet.","id":"Officiis eius suscipit magni voluptatem in.","key":"Adipisci consequatur provident deleniti consectetur.","key_prefix":"Quod soluta voluptatibus cum.","name":"Et enim deserunt et.","organization_id":"Illo rerum voluptatum.","project_id":"Aliquid ad.","scopes":["Aut veniam non quod voluptatem illo ut.","Soluta aperiam qui quidem qui animi.","Officia beatae voluptate."],"updated_at":"1983-04-24T21:27:28Z"},{"created_at":"2011-06-18T15:46:47Z","created_by_user_id":"Ad voluptatibus consequatur reiciendis voluptatum eveniet.","id":"Officiis eius suscipit magni voluptatem in.","key":"Adipisci consequatur provident deleniti consectetur.","key_prefix":"Quod soluta voluptatibus cum.","name":"Et enim deserunt et.","organization_id":"Illo rerum voluptatum.","project_id":"Aliquid ad.","scopes":["Aut veniam non quod voluptatem illo ut.","Soluta aperiam qui quidem qui animi.","Officia beatae voluptate."],"updated_at":"1983-04-24T21:27:28Z"}]},"required":["keys"]},"ListPackagesResult":{"title":"ListPackagesResult","type":"object","properties":{"packages":{"type":"array","items":{"$ref":"#/definitions/Package"},"description":"The list of packages","example":[{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."},{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."},{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."},{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."}]}},"example":{"packages":[{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."},{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."}]},"required":["packages"]},"ListProjectsResult":{"title":"ListProjectsResult","type":"object","properties":{"projects":{"type":"array","items":{"$ref":"#/definitions/ProjectEntry"},"description":"The list of projects","example":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}]}},"example":{"projects":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}]},"required":["projects"]},"ListPromptTemplatesResult":{"title":"ListPromptTemplatesResult","type":"object","properties":{"templates":{"type":"array","items":{"$ref":"#/definitions/PromptTemplate"},"description":"The created prompt template","example":[{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}]}},"example":{"templates":[{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}]},"required":["templates"]},"ListToolsResult":{"title":"ListToolsResult","type":"object","properties":{"next_cursor":{"type":"string","description":"The cursor to fetch results from","example":"Itaque rerum quo quae autem."},"tools":{"type":"array","items":{"$ref":"#/definitions/Tool"},"description":"The list of tools (polymorphic union of HTTP tools and prompt templates)","example":[{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}}]}},"example":{"next_cursor":"Rerum ipsam suscipit sit aut voluptates.","tools":[{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}}]},"required":["tools"]},"ListToolsetsResult":{"title":"ListToolsetsResult","type":"object","properties":{"toolsets":{"type":"array","items":{"$ref":"#/definitions/ToolsetEntry"},"description":"The list of toolsets","example":[{"created_at":"1982-08-26T20:29:50Z","custom_domain_id":"Pariatur optio porro.","default_environment_slug":"v1y","description":"Maxime fugiat porro nihil quo.","id":"Minus ea minus cupiditate dignissimos repudiandae cumque.","mcp_enabled":false,"mcp_is_public":true,"mcp_slug":"3ey","name":"Ut est dicta aut quo tempora harum.","organization_id":"Ut fugiat.","project_id":"Et impedit.","prompt_templates":[{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"slug":"5x1","tool_urns":["Officia dolores sed est eligendi unde.","Cupiditate nulla voluptas earum illum dolorum."],"tools":[{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"}],"updated_at":"2000-02-05T13:26:39Z"},{"created_at":"1982-08-26T20:29:50Z","custom_domain_id":"Pariatur optio porro.","default_environment_slug":"v1y","description":"Maxime fugiat porro nihil quo.","id":"Minus ea minus cupiditate dignissimos repudiandae cumque.","mcp_enabled":false,"mcp_is_public":true,"mcp_slug":"3ey","name":"Ut est dicta aut quo tempora harum.","organization_id":"Ut fugiat.","project_id":"Et impedit.","prompt_templates":[{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"slug":"5x1","tool_urns":["Officia dolores sed est eligendi unde.","Cupiditate nulla voluptas earum illum dolorum."],"tools":[{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"}],"updated_at":"2000-02-05T13:26:39Z"},{"created_at":"1982-08-26T20:29:50Z","custom_domain_id":"Pariatur optio porro.","default_environment_slug":"v1y","description":"Maxime fugiat porro nihil quo.","id":"Minus ea minus cupiditate dignissimos repudiandae cumque.","mcp_enabled":false,"mcp_is_public":true,"mcp_slug":"3ey","name":"Ut est dicta aut quo tempora harum.","organization_id":"Ut fugiat.","project_id":"Et impedit.","prompt_templates":[{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"slug":"5x1","tool_urns":["Officia dolores sed est eligendi unde.","Cupiditate nulla voluptas earum illum dolorum."],"tools":[{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"}],"updated_at":"2000-02-05T13:26:39Z"}]}},"example":{"toolsets":[{"created_at":"1982-08-26T20:29:50Z","custom_domain_id":"Pariatur optio porro.","default_environment_slug":"v1y","description":"Maxime fugiat porro nihil quo.","id":"Minus ea minus cupiditate dignissimos repudiandae cumque.","mcp_enabled":false,"mcp_is_public":true,"mcp_slug":"3ey","name":"Ut est dicta aut quo tempora harum.","organization_id":"Ut fugiat.","project_id":"Et impedit.","prompt_templates":[{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"slug":"5x1","tool_urns":["Officia dolores sed est eligendi unde.","Cupiditate nulla voluptas earum illum dolorum."],"tools":[{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"}],"updated_at":"2000-02-05T13:26:39Z"},{"created_at":"1982-08-26T20:29:50Z","custom_domain_id":"Pariatur optio porro.","default_environment_slug":"v1y","description":"Maxime fugiat porro nihil quo.","id":"Minus ea minus cupiditate dignissimos repudiandae cumque.","mcp_enabled":false,"mcp_is_public":true,"mcp_slug":"3ey","name":"Ut est dicta aut quo tempora harum.","organization_id":"Ut fugiat.","project_id":"Et impedit.","prompt_templates":[{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"slug":"5x1","tool_urns":["Officia dolores sed est eligendi unde.","Cupiditate nulla voluptas earum illum dolorum."],"tools":[{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"}],"updated_at":"2000-02-05T13:26:39Z"},{"created_at":"1982-08-26T20:29:50Z","custom_domain_id":"Pariatur optio porro.","default_environment_slug":"v1y","description":"Maxime fugiat porro nihil quo.","id":"Minus ea minus cupiditate dignissimos repudiandae cumque.","mcp_enabled":false,"mcp_is_public":true,"mcp_slug":"3ey","name":"Ut est dicta aut quo tempora harum.","organization_id":"Ut fugiat.","project_id":"Et impedit.","prompt_templates":[{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"slug":"5x1","tool_urns":["Officia dolores sed est eligendi unde.","Cupiditate nulla voluptas earum illum dolorum."],"tools":[{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"}],"updated_at":"2000-02-05T13:26:39Z"},{"created_at":"1982-08-26T20:29:50Z","custom_domain_id":"Pariatur optio porro.","default_environment_slug":"v1y","description":"Maxime fugiat porro nihil quo.","id":"Minus ea minus cupiditate dignissimos repudiandae cumque.","mcp_enabled":false,"mcp_is_public":true,"mcp_slug":"3ey","name":"Ut est dicta aut quo tempora harum.","organization_id":"Ut fugiat.","project_id":"Et impedit.","prompt_templates":[{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"slug":"5x1","tool_urns":["Officia dolores sed est eligendi unde.","Cupiditate nulla voluptas earum illum dolorum."],"tools":[{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"}],"updated_at":"2000-02-05T13:26:39Z"}]},"required":["toolsets"]},"ListVariationsResult":{"title":"ListVariationsResult","type":"object","properties":{"variations":{"type":"array","items":{"$ref":"#/definitions/ToolVariation"},"example":[{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."},{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."},{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."},{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}]}},"example":{"variations":[{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."},{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}]},"required":["variations"]},"ListVersionsResult":{"title":"ListVersionsResult","type":"object","properties":{"package":{"$ref":"#/definitions/Package"},"versions":{"type":"array","items":{"$ref":"#/definitions/PackageVersion"},"example":[{"created_at":"1995-01-02T23:55:32Z","deployment_id":"Quidem architecto ut commodi natus.","id":"Ullam ut sapiente sapiente quia.","package_id":"Non earum.","semver":"Debitis quia sit quod omnis.","visibility":"Delectus repudiandae ea."},{"created_at":"1995-01-02T23:55:32Z","deployment_id":"Quidem architecto ut commodi natus.","id":"Ullam ut sapiente sapiente quia.","package_id":"Non earum.","semver":"Debitis quia sit quod omnis.","visibility":"Delectus repudiandae ea."},{"created_at":"1995-01-02T23:55:32Z","deployment_id":"Quidem architecto ut commodi natus.","id":"Ullam ut sapiente sapiente quia.","package_id":"Non earum.","semver":"Debitis quia sit quod omnis.","visibility":"Delectus repudiandae ea."}]}},"example":{"package":{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."},"versions":[{"created_at":"1995-01-02T23:55:32Z","deployment_id":"Quidem architecto ut commodi natus.","id":"Ullam ut sapiente sapiente quia.","package_id":"Non earum.","semver":"Debitis quia sit quod omnis.","visibility":"Delectus repudiandae ea."},{"created_at":"1995-01-02T23:55:32Z","deployment_id":"Quidem architecto ut commodi natus.","id":"Ullam ut sapiente sapiente quia.","package_id":"Non earum.","semver":"Debitis quia sit quod omnis.","visibility":"Delectus repudiandae ea."},{"created_at":"1995-01-02T23:55:32Z","deployment_id":"Quidem architecto ut commodi natus.","id":"Ullam ut sapiente sapiente quia.","package_id":"Non earum.","semver":"Debitis quia sit quod omnis.","visibility":"Delectus repudiandae ea."}]},"required":["package","versions"]},"McpMetadata":{"title":"McpMetadata","type":"object","properties":{"created_at":{"type":"string","description":"When the metadata entry was created","example":"1991-10-17T12:42:28Z","format":"date-time"},"external_documentation_url":{"type":"string","description":"A link to external documentation for the MCP install page","example":"http://kundenitzsche.com/pattie","format":"uri"},"id":{"type":"string","description":"The ID of the metadata record","example":"Ea cupiditate aliquam sit."},"logo_asset_id":{"type":"string","description":"The asset ID for the MCP install page logo","example":"10482823-de18-4160-a768-1adf22b2514a","format":"uuid"},"toolset_id":{"type":"string","description":"The toolset associated with this install page metadata","example":"c686efe2-6dbf-47c1-9544-3d0cb3a302db","format":"uuid"},"updated_at":{"type":"string","description":"When the metadata entry was last updated","example":"2009-02-15T04:41:25Z","format":"date-time"}},"description":"Metadata used to configure the MCP install page.","example":{"created_at":"1970-11-11T03:36:50Z","external_documentation_url":"http://gleason.info/mackenzie","id":"Aut quaerat ipsum.","logo_asset_id":"8d5796fc-4ad5-4398-8f0d-02ab4cfeab7e","toolset_id":"3c66d156-8b35-4443-8f94-be6cfd6c8b10","updated_at":"1999-01-30T02:07:19Z"},"required":["id","toolset_id","created_at","updated_at"]},"McpMetadataGetMcpMetadataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataResponseBody":{"title":"McpMetadataGetMcpMetadataResponseBody","type":"object","properties":{"metadata":{"$ref":"#/definitions/McpMetadata"}},"example":{"metadata":{"created_at":"1989-12-24T13:24:58Z","external_documentation_url":"http://witting.biz/lisa.hauck","id":"Magnam eius perferendis veniam.","logo_asset_id":"f3e977e7-2ecf-4e3b-8636-8f0b3dc7560f","toolset_id":"f983cab3-3d5a-4df4-ba39-a71f555aa8e7","updated_at":"1980-10-11T10:14:48Z"}}},"McpMetadataGetMcpMetadataUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataGetMcpMetadataUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataRequestBody":{"title":"McpMetadataSetMcpMetadataRequestBody","type":"object","properties":{"external_documentation_url":{"type":"string","description":"A link to external documentation for the MCP install page","example":"Sed tenetur."},"logo_asset_id":{"type":"string","description":"The asset ID for the MCP install page logo","example":"Veritatis sapiente explicabo consequatur voluptatum."},"toolset_slug":{"type":"string","description":"The slug of the toolset associated with this install page metadata","example":"zhz","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"external_documentation_url":"Itaque consequatur ea.","logo_asset_id":"Numquam qui maiores cupiditate.","toolset_slug":"ewb"},"required":["toolset_slug"]},"McpMetadataSetMcpMetadataUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"McpMetadataSetMcpMetadataUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"OAuthProxyProvider":{"title":"OAuthProxyProvider","type":"object","properties":{"authorization_endpoint":{"type":"string","description":"The authorization endpoint URL","example":"Aut et et sit voluptatem in."},"created_at":{"type":"string","description":"When the OAuth proxy provider was created.","example":"2012-08-20T05:41:00Z","format":"date-time"},"grant_types_supported":{"type":"array","items":{"type":"string","example":"Deleniti ipsam facilis vero quos animi fugiat."},"description":"The grant types supported by this provider","example":["Ut totam libero et dolore.","Et error sapiente sapiente qui voluptate."]},"id":{"type":"string","description":"The ID of the OAuth proxy provider","example":"Repellendus cumque consequuntur."},"scopes_supported":{"type":"array","items":{"type":"string","example":"Nulla vero nihil."},"description":"The OAuth scopes supported by this provider","example":["Repellat eos sit aut.","Iure molestiae.","Rerum eveniet provident ipsa impedit sed id."]},"slug":{"type":"string","description":"The slug of the OAuth proxy provider","example":"pml","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"token_endpoint":{"type":"string","description":"The token endpoint URL","example":"Facilis odio ipsam."},"token_endpoint_auth_methods_supported":{"type":"array","items":{"type":"string","example":"Est officiis recusandae pariatur et qui esse."},"description":"The token endpoint auth methods supported by this provider","example":["Provident soluta ut.","Aut reiciendis enim et omnis laboriosam error.","Odit voluptas labore saepe deleniti quia aut.","Rerum rem dignissimos."]},"updated_at":{"type":"string","description":"When the OAuth proxy provider was last updated.","example":"1987-08-09T13:03:49Z","format":"date-time"}},"example":{"authorization_endpoint":"Nulla itaque quo iure velit commodi.","created_at":"2002-02-23T12:59:17Z","grant_types_supported":["Neque non est.","Ut reprehenderit non placeat non reiciendis.","Tempora qui id ut veritatis et quas."],"id":"Quia rerum.","scopes_supported":["Soluta dolores quisquam asperiores harum hic.","Hic vitae."],"slug":"php","token_endpoint":"Quasi blanditiis repudiandae.","token_endpoint_auth_methods_supported":["Est qui saepe.","Corrupti sint dolor quo molestias sint neque.","Expedita id quia.","Laborum reprehenderit laboriosam quos eos commodi."],"updated_at":"1996-04-30T15:03:50Z"},"required":["id","slug","authorization_endpoint","token_endpoint","created_at","updated_at"]},"OAuthProxyServer":{"title":"OAuthProxyServer","type":"object","properties":{"created_at":{"type":"string","description":"When the OAuth proxy server was created.","example":"1998-09-15T11:04:51Z","format":"date-time"},"id":{"type":"string","description":"The ID of the OAuth proxy server","example":"Debitis natus voluptas eos ut qui dolorum."},"oauth_proxy_providers":{"type":"array","items":{"$ref":"#/definitions/OAuthProxyProvider"},"description":"The OAuth proxy providers for this server","example":[{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"},{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"},{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"}]},"project_id":{"type":"string","description":"The project ID this OAuth proxy server belongs to","example":"Nesciunt rerum officia."},"slug":{"type":"string","description":"The slug of the OAuth proxy server","example":"m56","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"updated_at":{"type":"string","description":"When the OAuth proxy server was last updated.","example":"1984-06-25T21:19:45Z","format":"date-time"}},"example":{"created_at":"2006-08-30T06:14:36Z","id":"Quasi sit consectetur in consectetur magni.","oauth_proxy_providers":[{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"},{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"},{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"}],"project_id":"Omnis voluptatem quia ullam neque.","slug":"32u","updated_at":"2011-06-22T18:37:25Z"},"required":["id","project_id","slug","created_at","updated_at"]},"OpenAPIv3DeploymentAsset":{"title":"OpenAPIv3DeploymentAsset","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the uploaded asset.","example":"Amet suscipit id voluptatem consectetur tenetur."},"id":{"type":"string","description":"The ID of the deployment asset.","example":"Ipsum architecto consectetur."},"name":{"type":"string","description":"The name to give the document as it will be displayed in UIs.","example":"Voluptas aut."},"slug":{"type":"string","description":"The slug to give the document as it will be displayed in URLs.","example":"jr0","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"asset_id":"Est nesciunt exercitationem.","id":"Quo officia atque aut consequatur.","name":"Nihil rerum maxime.","slug":"dak"},"required":["id","asset_id","name","slug"]},"OrganizationEntry":{"title":"OrganizationEntry","type":"object","properties":{"id":{"type":"string","example":"Non cum a eaque sed asperiores incidunt."},"name":{"type":"string","example":"Omnis doloremque eius quisquam molestiae adipisci voluptatem."},"projects":{"type":"array","items":{"$ref":"#/definitions/ProjectEntry"},"example":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}]},"slug":{"type":"string","example":"Suscipit fugit."},"sso_connection_id":{"type":"string","example":"Ut ipsam et."},"user_workspace_slugs":{"type":"array","items":{"type":"string","example":"Placeat numquam itaque est."},"example":["Libero quae quod qui.","Earum est distinctio itaque.","Aut beatae possimus omnis quia veritatis.","Tenetur sit tenetur aut."]}},"example":{"id":"Voluptatem fugit suscipit magni id amet.","name":"Dolores a nesciunt ex.","projects":[{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"},{"id":"Voluptatem veniam blanditiis.","name":"Dolor non consequatur.","slug":"e1p"}],"slug":"Reprehenderit dolor est.","sso_connection_id":"Beatae omnis quae rerum aut cumque ad.","user_workspace_slugs":["Saepe reprehenderit.","Qui et sint.","Recusandae ab ut voluptatem corporis incidunt laborum."]},"required":["id","name","slug","projects"]},"Package":{"title":"Package","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the package","example":"2002-10-20T07:19:36Z","format":"date-time"},"deleted_at":{"type":"string","description":"The deletion date of the package","example":"1981-03-31T11:08:47Z","format":"date-time"},"description":{"type":"string","description":"The description of the package. This contains HTML content.","example":"Nemo consectetur et."},"description_raw":{"type":"string","description":"The unsanitized, user-supplied description of the package. Limited markdown syntax is supported.","example":"Consequuntur deleniti occaecati officia magnam recusandae aut."},"id":{"type":"string","description":"The ID of the package","example":"Et itaque."},"image_asset_id":{"type":"string","description":"The asset ID of the image to show for this package","example":"Non quam."},"keywords":{"type":"array","items":{"type":"string","example":"Voluptatem voluptatum laboriosam id illum suscipit."},"description":"The keywords of the package","example":["In alias libero reprehenderit.","Impedit aspernatur.","Autem est nulla error unde corrupti.","Suscipit quo aut quam ipsam neque deleniti."]},"latest_version":{"type":"string","description":"The latest version of the package","example":"Quo quos."},"name":{"type":"string","description":"The name of the package","example":"Sit quo reprehenderit nulla porro laborum."},"organization_id":{"type":"string","description":"The ID of the organization that owns the package","example":"Perspiciatis vel tenetur asperiores maiores sed est."},"project_id":{"type":"string","description":"The ID of the project that owns the package","example":"Velit eligendi quasi."},"summary":{"type":"string","description":"The summary of the package","example":"Unde qui culpa omnis alias."},"title":{"type":"string","description":"The title of the package","example":"Est fuga temporibus qui dolorum."},"updated_at":{"type":"string","description":"The last update date of the package","example":"1979-04-21T19:27:54Z","format":"date-time"},"url":{"type":"string","description":"External URL for the package owner","example":"Quasi est ab sint ducimus."}},"example":{"created_at":"2001-07-09T13:34:47Z","deleted_at":"1992-01-29T00:32:35Z","description":"Dolor ea.","description_raw":"Et quae eos sed.","id":"In eius unde corporis molestiae eligendi.","image_asset_id":"Non vel impedit atque neque excepturi.","keywords":["Saepe iste quasi velit.","Qui veniam."],"latest_version":"Eveniet sint.","name":"Numquam rerum.","organization_id":"Et deleniti in sunt.","project_id":"Fugit aut quia deleniti animi ullam ipsam.","summary":"Rerum nihil qui et vero dolores ducimus.","title":"Labore debitis est.","updated_at":"1982-07-10T12:25:52Z","url":"Impedit aperiam explicabo praesentium consequatur."},"required":["id","name","project_id","organization_id","created_at","updated_at"]},"PackageVersion":{"title":"PackageVersion","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the package version","example":"1986-05-18T20:02:41Z","format":"date-time"},"deployment_id":{"type":"string","description":"The ID of the deployment that the version belongs to","example":"Asperiores iste ex."},"id":{"type":"string","description":"The ID of the package version","example":"Est eveniet quia reiciendis."},"package_id":{"type":"string","description":"The ID of the package that the version belongs to","example":"In amet aut non commodi incidunt odio."},"semver":{"type":"string","description":"The semantic version value","example":"Et ut."},"visibility":{"type":"string","description":"The visibility of the package version","example":"Ipsum modi necessitatibus quo sit explicabo."}},"example":{"created_at":"1987-04-13T17:02:21Z","deployment_id":"Iusto temporibus qui molestias sed voluptas.","id":"Et libero neque in.","package_id":"Consequatur quia omnis molestiae expedita vero.","semver":"Natus magni ut.","visibility":"Odio dolorum laboriosam."},"required":["id","package_id","deployment_id","visibility","semver","created_at"]},"PackagesCreatePackageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageRequestBody":{"title":"PackagesCreatePackageRequestBody","type":"object","properties":{"description":{"type":"string","description":"The description of the package. Limited markdown syntax is supported.","example":"zt8","maxLength":10000},"image_asset_id":{"type":"string","description":"The asset ID of the image to show for this package","example":"ffl","maxLength":50},"keywords":{"type":"array","items":{"type":"string","example":"Reiciendis occaecati molestias."},"description":"The keywords of the package","example":["Quia non.","Consequuntur aliquam.","Inventore et."],"maxItems":5},"name":{"type":"string","description":"The name of the package","example":"y5q","pattern":"^[a-z0-9_-]{1,128}$","maxLength":100},"summary":{"type":"string","description":"The summary of the package","example":"ly8","maxLength":80},"title":{"type":"string","description":"The title of the package","example":"hrq","maxLength":100},"url":{"type":"string","description":"External URL for the package owner","example":"3x9","maxLength":100}},"example":{"description":"tya","image_asset_id":"qfj","keywords":["Enim non quis sed consectetur.","Aliquam voluptas excepturi voluptatem et iusto quia.","Ex corporis et repellendus a."],"name":"lhj","summary":"zvg","title":"jf1","url":"st2"},"required":["name","title","summary"]},"PackagesCreatePackageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesCreatePackageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListPackagesUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesListVersionsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishRequestBody":{"title":"PackagesPublishRequestBody","type":"object","properties":{"deployment_id":{"type":"string","description":"The deployment ID to associate with the package version","example":"Accusantium blanditiis ut et eveniet."},"name":{"type":"string","description":"The name of the package","example":"Laborum qui laborum quia."},"version":{"type":"string","description":"The new semantic version of the package to publish","example":"Odio quia asperiores qui ea nulla."},"visibility":{"type":"string","description":"The visibility of the package version","example":"private","enum":["public","private"]}},"example":{"deployment_id":"Quia minima numquam voluptas.","name":"Quis doloremque aut quidem placeat.","version":"Ut quod itaque.","visibility":"public"},"required":["name","version","deployment_id","visibility"]},"PackagesPublishUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesPublishUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageNotModifiedResponseBody":{"title":"PackagesUpdatePackageNotModifiedResponseBody","type":"object","properties":{"location":{"type":"string","example":"Voluptas nihil sed facere nisi libero doloremque."}},"example":{"location":"Error repellat quidem nulla dicta totam."},"required":["location"]},"PackagesUpdatePackageRequestBody":{"title":"PackagesUpdatePackageRequestBody","type":"object","properties":{"description":{"type":"string","description":"The description of the package. Limited markdown syntax is supported.","example":"r6o","maxLength":10000},"id":{"type":"string","description":"The id of the package to update","example":"w59","maxLength":50},"image_asset_id":{"type":"string","description":"The asset ID of the image to show for this package","example":"fnh","maxLength":50},"keywords":{"type":"array","items":{"type":"string","example":"Consequuntur consequatur corrupti et quas rerum."},"description":"The keywords of the package","example":["Est et deleniti et maxime.","Voluptatum illo sequi rerum.","Saepe consequatur commodi."],"maxItems":5},"summary":{"type":"string","description":"The summary of the package","example":"482","maxLength":80},"title":{"type":"string","description":"The title of the package","example":"d1d","maxLength":100},"url":{"type":"string","description":"External URL for the package owner","example":"qw1","maxLength":100}},"example":{"description":"zcr","id":"ke5","image_asset_id":"6xc","keywords":["Aut ut eveniet.","Enim voluptate quasi et unde voluptatem.","Similique et id voluptatem qui architecto."],"summary":"59p","title":"jio","url":"8g8"},"required":["id"]},"PackagesUpdatePackageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PackagesUpdatePackageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"PeriodUsage":{"title":"PeriodUsage","type":"object","properties":{"actual_enabled_server_count":{"type":"integer","description":"The number of servers enabled at the time of the request","example":5185134479774274201,"format":"int64"},"max_servers":{"type":"integer","description":"The maximum number of servers allowed","example":4571324196587177937,"format":"int64"},"max_tool_calls":{"type":"integer","description":"The maximum number of tool calls allowed","example":7569070943459161150,"format":"int64"},"servers":{"type":"integer","description":"The number of servers used, according to the Polar meter","example":745481240576913974,"format":"int64"},"tool_calls":{"type":"integer","description":"The number of tool calls used","example":7002637421755133094,"format":"int64"}},"example":{"actual_enabled_server_count":4273767852662916521,"max_servers":1659224041325551575,"max_tool_calls":1831300409214944548,"servers":4250137701297740114,"tool_calls":4192796186754289925},"required":["tool_calls","max_tool_calls","servers","max_servers","actual_enabled_server_count"]},"Project":{"title":"Project","type":"object","properties":{"created_at":{"type":"string","description":"The creation date of the project.","example":"2005-09-21T00:54:11Z","format":"date-time"},"id":{"type":"string","description":"The ID of the project","example":"Eius deleniti temporibus."},"logo_asset_id":{"type":"string","description":"The ID of the logo asset for the project","example":"Eum nesciunt fuga voluptates ut."},"name":{"type":"string","description":"The name of the project","example":"Doloribus tempore repellendus nesciunt itaque."},"organization_id":{"type":"string","description":"The ID of the organization that owns the project","example":"Quis ut dignissimos."},"slug":{"type":"string","description":"The slug of the project","example":"r86","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"updated_at":{"type":"string","description":"The last update date of the project.","example":"2003-04-26T07:05:24Z","format":"date-time"}},"example":{"created_at":"1987-05-12T08:37:32Z","id":"Nam minus et magni expedita.","logo_asset_id":"Beatae quia ratione quis necessitatibus dicta.","name":"Blanditiis sit aut cumque.","organization_id":"Enim unde nostrum ut non expedita temporibus.","slug":"5y9","updated_at":"1977-07-26T03:20:28Z"},"required":["id","name","slug","organization_id","created_at","updated_at"]},"ProjectEntry":{"title":"ProjectEntry","type":"object","properties":{"id":{"type":"string","description":"The ID of the project","example":"Ut voluptates temporibus."},"name":{"type":"string","description":"The name of the project","example":"Similique minus."},"slug":{"type":"string","description":"The slug of the project","example":"2vq","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"id":"Quasi in voluptas.","name":"Ut nulla commodi.","slug":"1w9"},"required":["id","name","slug"]},"ProjectsCreateProjectBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectRequestBody":{"title":"ProjectsCreateProjectRequestBody","type":"object","properties":{"name":{"type":"string","description":"The name of the project","example":"tae","maxLength":40},"organization_id":{"type":"string","description":"The ID of the organization to create the project in","example":"Molestias vitae distinctio quia at."}},"example":{"name":"6zd","organization_id":"Aut error quo molestiae quis."},"required":["organization_id","name"]},"ProjectsCreateProjectUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsCreateProjectUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsListProjectsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoRequestBody":{"title":"ProjectsSetLogoRequestBody","type":"object","properties":{"asset_id":{"type":"string","description":"The ID of the asset","example":"Vel enim quo qui fuga."}},"example":{"asset_id":"Eius nam consequuntur."},"required":["asset_id"]},"ProjectsSetLogoUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ProjectsSetLogoUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"PromptTemplate":{"title":"PromptTemplate","type":"object","properties":{"canonical":{"$ref":"#/definitions/CanonicalToolAttributes"},"canonical_name":{"type":"string","description":"The canonical name of the tool. Will be the same as the name if there is no variation.","example":"Ducimus similique."},"confirm":{"type":"string","description":"Confirmation mode for the tool","example":"Quod in ut ea accusamus sed ullam."},"confirm_prompt":{"type":"string","description":"Prompt for the confirmation","example":"Enim nulla fugiat consequatur ea dolores debitis."},"created_at":{"type":"string","description":"The creation date of the tool.","example":"2002-04-20T06:31:17Z","format":"date-time"},"description":{"type":"string","description":"Description of the tool","example":"Quo a blanditiis dignissimos sit autem."},"engine":{"type":"string","description":"The template engine","example":"mustache","enum":["mustache"]},"history_id":{"type":"string","description":"The revision tree ID for the prompt template","example":"Eum libero."},"id":{"type":"string","description":"The ID of the tool","example":"Qui qui sunt eum aut adipisci."},"kind":{"type":"string","description":"The kind of prompt the template is used for","example":"prompt","enum":["prompt","higher_order_tool"]},"name":{"type":"string","description":"The name of the tool","example":"Non accusamus quia sit nobis accusamus sint."},"predecessor_id":{"type":"string","description":"The previous version of the prompt template to use as predecessor","example":"Eligendi vitae porro rerum rerum quasi veritatis."},"project_id":{"type":"string","description":"The ID of the project","example":"Ea cumque eius explicabo qui magni."},"prompt":{"type":"string","description":"The template content","example":"Quia qui sit omnis consequatur."},"schema":{"type":"string","description":"JSON schema for the request","example":"Vel sint atque."},"schema_version":{"type":"string","description":"Version of the schema","example":"Nihil incidunt molestiae."},"summarizer":{"type":"string","description":"Summarizer for the tool","example":"Aliquam aliquam et aliquid autem nemo."},"tool_urn":{"type":"string","description":"The URN of this tool","example":"Suscipit porro sit."},"tools_hint":{"type":"array","items":{"type":"string","example":"Voluptatum quam non consequatur dolor excepturi."},"description":"The suggested tool names associated with the prompt template","example":["Incidunt possimus hic qui.","Sunt hic nihil natus.","Explicabo in."],"maxItems":20},"updated_at":{"type":"string","description":"The last update date of the tool.","example":"1984-02-05T20:58:08Z","format":"date-time"},"variation":{"$ref":"#/definitions/ToolVariation"}},"description":"A prompt template","example":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Et porro voluptatem distinctio.","confirm":"Sint odit qui illum illum quae.","confirm_prompt":"Delectus rerum neque.","created_at":"1970-04-27T04:26:35Z","description":"Nulla non quasi.","engine":"mustache","history_id":"Laudantium quia sequi.","id":"Ea aut quaerat placeat dolorem quia accusantium.","kind":"higher_order_tool","name":"Rerum esse dolore sed eum beatae dolor.","predecessor_id":"Quisquam enim sed quaerat et dicta.","project_id":"Dolore velit eos aut asperiores aliquam.","prompt":"Ut ut sequi et amet.","schema":"Omnis veritatis architecto quis porro iusto et.","schema_version":"Perferendis harum pariatur voluptas.","summarizer":"Incidunt molestiae et sequi aut.","tool_urn":"Dignissimos quis ut qui.","tools_hint":["Repellat quisquam voluptas.","Quas modi nihil maxime quia.","Soluta odio."],"updated_at":"2012-12-11T13:58:46Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"required":["id","history_id","name","prompt","engine","kind","tools_hint","tool_urn","created_at","updated_at","project_id","canonical_name","description","schema"]},"PromptTemplateEntry":{"title":"PromptTemplateEntry","type":"object","properties":{"id":{"type":"string","description":"The ID of the prompt template","example":"Doloremque eos similique corporis quod."},"kind":{"type":"string","description":"The kind of the prompt template","example":"Asperiores et doloremque non."},"name":{"type":"string","description":"The name of the prompt template","example":"ep8","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40}},"example":{"id":"Deleniti laborum.","kind":"Mollitia nemo voluptate sed aliquam corrupti tempora.","name":"vew"},"required":["id","name"]},"PublishPackageResult":{"title":"PublishPackageResult","type":"object","properties":{"package":{"$ref":"#/definitions/Package"},"version":{"$ref":"#/definitions/PackageVersion"}},"example":{"package":{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."},"version":{"created_at":"1995-01-02T23:55:32Z","deployment_id":"Quidem architecto ut commodi natus.","id":"Ullam ut sapiente sapiente quia.","package_id":"Non earum.","semver":"Debitis quia sit quod omnis.","visibility":"Delectus repudiandae ea."}},"required":["package","version"]},"RedeployResult":{"title":"RedeployResult","type":"object","properties":{"deployment":{"$ref":"#/definitions/Deployment"}},"example":{}},"RenderTemplateResult":{"title":"RenderTemplateResult","type":"object","properties":{"prompt":{"type":"string","description":"The rendered prompt","example":"Id perspiciatis tempore corporis."}},"example":{"prompt":"In quis aut."},"required":["prompt"]},"ResponseFilter":{"title":"ResponseFilter","type":"object","properties":{"content_types":{"type":"array","items":{"type":"string","example":"Consequatur fuga."},"description":"Content types to filter for","example":["Et qui libero nihil et magnam dolor.","Possimus cum vero natus et eum.","Vel corporis dolorem."]},"status_codes":{"type":"array","items":{"type":"string","example":"In amet corrupti."},"description":"Status codes to filter for","example":["Voluptate voluptates corrupti.","Eligendi aliquid.","Rerum deleniti dolorem dolores consequatur.","Eos aut et molestiae rerum repellat amet."]},"type":{"type":"string","description":"Response filter type for the tool","example":"Repudiandae dolorem unde iusto et praesentium ipsam."}},"description":"Response filter metadata for the tool","example":{"content_types":["Rem qui illum enim molestias sint.","Est et natus.","Sed cumque minima.","Distinctio sapiente pariatur et nam."],"status_codes":["Molestiae nihil aperiam fugiat inventore.","Aut aut facilis fugit excepturi id doloremque.","Similique tempore minima at sequi nemo."],"type":"Temporibus expedita voluptatem quaerat cupiditate numquam."},"required":["type","status_codes","content_types"]},"SecurityVariable":{"title":"SecurityVariable","type":"object","properties":{"bearer_format":{"type":"string","description":"The bearer format","example":"Quibusdam aspernatur laborum sed."},"env_variables":{"type":"array","items":{"type":"string","example":"Et saepe."},"description":"The environment variables","example":["Quidem eos magnam.","Incidunt est.","Dolor ab totam ut ullam.","Quidem est rem odit non sit."]},"in_placement":{"type":"string","description":"Where the security token is placed","example":"Id ex repellat nemo."},"name":{"type":"string","description":"The name of the security scheme","example":"Delectus odit distinctio."},"oauth_flows":{"type":"string","description":"The OAuth flows","example":"U3VudCBvbW5pcy4=","format":"byte"},"oauth_types":{"type":"array","items":{"type":"string","example":"Amet incidunt autem maxime."},"description":"The OAuth types","example":["Exercitationem consequatur quia impedit autem repellat.","Consequatur sit.","Ratione doloribus est perspiciatis sed dolor."]},"scheme":{"type":"string","description":"The security scheme","example":"Aut possimus molestias veniam."},"type":{"type":"string","description":"The type of security","example":"Deleniti ut."}},"example":{"bearer_format":"Soluta dolorum.","env_variables":["In voluptas quia sit.","Ea exercitationem ipsam quae.","Blanditiis omnis quo voluptate dolorum.","Sed at ea enim provident laudantium."],"in_placement":"Cumque minus voluptatem doloremque enim non.","name":"Voluptas laboriosam.","oauth_flows":"Vm9sdXB0YXMgdWxsYW0gcmVpY2llbmRpcyBhcmNoaXRlY3RvIGN1cGlkaXRhdGUu","oauth_types":["Placeat autem porro.","Et aut consequatur.","Quia reiciendis itaque recusandae nihil."],"scheme":"Eveniet perferendis ipsa temporibus alias.","type":"Sapiente doloremque."},"required":["name","in_placement","scheme","env_variables"]},"ServerVariable":{"title":"ServerVariable","type":"object","properties":{"description":{"type":"string","description":"Description of the server variable","example":"Aperiam iusto distinctio nemo tempore molestiae."},"env_variables":{"type":"array","items":{"type":"string","example":"Consectetur fugit aspernatur."},"description":"The environment variables","example":["Rem voluptatum optio aut dolore ex.","Maxime qui et minima.","Ut enim illum dolorem dolorem veritatis aliquam."]}},"example":{"description":"Reiciendis sit sunt velit illum quis numquam.","env_variables":["Tempore suscipit.","Nam quis cupiditate at vero ut fuga.","Et repudiandae nihil in quia.","Fugiat autem voluptas voluptatem facilis."]},"required":["description","env_variables"]},"SetProjectLogoResult":{"title":"SetProjectLogoResult","type":"object","properties":{"project":{"$ref":"#/definitions/Project"}},"example":{"project":{"created_at":"1982-08-15T21:58:36Z","id":"Ut ipsa accusantium corrupti dolores nemo nesciunt.","logo_asset_id":"Omnis omnis sunt nesciunt impedit atque.","name":"Voluptatem incidunt pariatur omnis illum et officiis.","organization_id":"Qui velit eligendi tempora quis culpa molestiae.","slug":"j9a","updated_at":"1972-05-21T05:31:53Z"}},"required":["project"]},"SlackCallbackBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackCallbackUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackDeleteSlackConnectionUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackGetSlackConnectionUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackLoginUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionRequestBody":{"title":"SlackUpdateSlackConnectionRequestBody","type":"object","properties":{"default_toolset_slug":{"type":"string","description":"The default toolset slug for this Slack connection","example":"Vel et voluptatum repudiandae cum enim est."}},"example":{"default_toolset_slug":"Sit illo."},"required":["default_toolset_slug"]},"SlackUpdateSlackConnectionUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"SlackUpdateSlackConnectionUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateRequestBody":{"title":"TemplatesCreateTemplateRequestBody","type":"object","properties":{"arguments":{"type":"string","description":"The JSON Schema defining the placeholders found in the prompt template","example":"{\"name\":\"example\",\"email\":\"mail@example.com\"}","format":"json"},"description":{"type":"string","description":"The description of the prompt template","example":"Delectus sequi doloremque odio."},"engine":{"type":"string","description":"The template engine","example":"mustache","enum":["mustache"]},"kind":{"type":"string","description":"The kind of prompt the template is used for","example":"prompt","enum":["prompt","higher_order_tool"]},"name":{"type":"string","description":"The name of the prompt template","example":"yyh","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"prompt":{"type":"string","description":"The template content","example":"Consequatur voluptatum quo nisi consequatur nisi doloremque."},"tools_hint":{"type":"array","items":{"type":"string","example":"Aspernatur numquam ad necessitatibus optio earum."},"description":"The suggested tool names associated with the prompt template","example":["Necessitatibus facilis pariatur occaecati accusantium.","Mollitia perspiciatis cum ea qui nisi.","Doloribus in corporis fugit ipsum accusamus illum."],"maxItems":20}},"example":{"arguments":"{\"name\":\"example\",\"email\":\"mail@example.com\"}","description":"Cum et harum dicta.","engine":"mustache","kind":"prompt","name":"1z6","prompt":"Non dolor doloremque ipsam corrupti fugiat modi.","tools_hint":["Aspernatur molestiae dicta sequi eos.","Veritatis recusandae velit aliquam odit fuga officiis.","Aperiam a nam temporibus."]},"required":["name","prompt","engine","kind"]},"TemplatesCreateTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesCreateTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesDeleteTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesGetTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesListTemplatesUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDRequestBody":{"title":"TemplatesRenderTemplateByIDRequestBody","type":"object","properties":{"arguments":{"type":"object","description":"The input data to render the template with","example":{"Et ut provident deserunt.":"Et earum.","Non ut dolores consequatur perferendis dolores voluptatem.":"Ratione qui recusandae."},"additionalProperties":true}},"example":{"arguments":{"Ex repellat id voluptas et dolorum.":"Quibusdam voluptatibus rerum impedit aut odio qui.","Quo deserunt.":"Nam dolor voluptatibus vel doloremque blanditiis."}},"required":["arguments"]},"TemplatesRenderTemplateByIDUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateByIDUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateRequestBody":{"title":"TemplatesRenderTemplateRequestBody","type":"object","properties":{"arguments":{"type":"object","description":"The input data to render the template with","example":{"Ducimus ratione numquam ducimus et explicabo repellendus.":"Deleniti ullam incidunt totam repellat recusandae asperiores.","Odio at repellendus fugiat totam et natus.":"Totam est saepe voluptas corrupti."},"additionalProperties":true},"engine":{"type":"string","description":"The template engine","example":"mustache","enum":["mustache"]},"kind":{"type":"string","description":"The kind of prompt the template is used for","example":"prompt","enum":["prompt","higher_order_tool"]},"prompt":{"type":"string","description":"The template content to render","example":"Nemo suscipit."}},"example":{"arguments":{"Aut et odio.":"Error ut modi.","Modi ea accusamus vel voluptatibus amet.":"Placeat perferendis aut.","Velit et accusamus vero saepe.":"Magni possimus."},"engine":"mustache","kind":"prompt","prompt":"Voluptatem ut unde mollitia nulla."},"required":["prompt","arguments","engine","kind"]},"TemplatesRenderTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesRenderTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateRequestBody":{"title":"TemplatesUpdateTemplateRequestBody","type":"object","properties":{"arguments":{"type":"string","description":"The JSON Schema defining the placeholders found in the prompt template","example":"{\"name\":\"example\",\"email\":\"mail@example.com\"}","format":"json"},"description":{"type":"string","description":"The description of the prompt template","example":"Commodi ad voluptas veniam hic omnis in."},"engine":{"type":"string","description":"The template engine","example":"mustache","enum":["mustache"]},"id":{"type":"string","description":"The ID of the prompt template to update","example":"Ipsam accusamus quisquam quia minus."},"kind":{"type":"string","description":"The kind of prompt the template is used for","example":"prompt","enum":["prompt","higher_order_tool"]},"prompt":{"type":"string","description":"The template content","example":"Ut non id."},"tools_hint":{"type":"array","items":{"type":"string","example":"Qui quae reiciendis et eaque itaque."},"description":"The suggested tool names associated with the prompt template","example":["Fugiat maiores dolorum eligendi nihil aliquam ipsa.","Dolorum esse quo repellendus omnis voluptatem.","Ut est et dolore."],"maxItems":20}},"example":{"arguments":"{\"name\":\"example\",\"email\":\"mail@example.com\"}","description":"Voluptatem pariatur enim quos.","engine":"mustache","id":"Et amet quis eveniet et et.","kind":"prompt","prompt":"Porro est optio doloremque.","tools_hint":["Quod optio rerum.","Est voluptatem.","Omnis occaecati dolorem natus aspernatur ullam."]},"required":["id"]},"TemplatesUpdateTemplateUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TemplatesUpdateTemplateUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"TierLimits":{"title":"TierLimits","type":"object","properties":{"add_on_bullets":{"type":"array","items":{"type":"string","example":"Rerum qui sed maxime aliquid voluptas accusamus."},"description":"Add-on items bullets of the tier (optional)","example":["Rerum repellat odio libero dolorem voluptatum.","Reiciendis et natus ab officia."]},"base_price":{"type":"number","description":"The base price for the tier","example":0.7210612369881689,"format":"double"},"feature_bullets":{"type":"array","items":{"type":"string","example":"Quia nihil iure sed enim et."},"description":"Key feature bullets of the tier","example":["Eveniet possimus adipisci.","Non et fugiat iure.","Dignissimos qui."]},"included_bullets":{"type":"array","items":{"type":"string","example":"Ullam accusamus consequuntur maiores voluptas."},"description":"Included items bullets of the tier","example":["Ut sunt aut ea ullam esse soluta.","Est aspernatur magni omnis veritatis.","Impedit assumenda voluptatem velit consequuntur nisi ut.","Suscipit natus et sequi."]},"included_credits":{"type":"integer","description":"The number of credits included in the tier for playground and other dashboard activities","example":4208977758392030646,"format":"int64"},"included_servers":{"type":"integer","description":"The number of servers included in the tier","example":474618756909620646,"format":"int64"},"included_tool_calls":{"type":"integer","description":"The number of tool calls included in the tier","example":3930262213980847452,"format":"int64"},"price_per_additional_credit":{"type":"number","description":"The price per additional credit","example":0.21699003575246031,"format":"double"},"price_per_additional_server":{"type":"number","description":"The price per additional server","example":0.1800764145031353,"format":"double"},"price_per_additional_tool_call":{"type":"number","description":"The price per additional tool call","example":0.8077372186385244,"format":"double"}},"example":{"add_on_bullets":["Qui sed.","Error iusto officia eaque nesciunt perspiciatis dolorem."],"base_price":0.9869165310828927,"feature_bullets":["Qui et cupiditate.","Dolorum rerum iusto eos eos.","Veritatis possimus nam totam inventore."],"included_bullets":["Rerum nisi architecto minus.","Consequatur animi vel corrupti alias.","Et ut."],"included_credits":8654323487652876584,"included_servers":5354452698053385646,"included_tool_calls":8420043326518504320,"price_per_additional_credit":0.49046224516530773,"price_per_additional_server":0.0939243012444687,"price_per_additional_tool_call":0.7962222461583263},"required":["base_price","included_tool_calls","included_servers","included_credits","price_per_additional_tool_call","price_per_additional_server","price_per_additional_credit","feature_bullets","included_bullets"]},"Tool":{"title":"Tool","type":"object","properties":{"http_tool_definition":{"$ref":"#/definitions/HTTPToolDefinition"},"prompt_template":{"$ref":"#/definitions/PromptTemplate"}},"description":"A polymorphic tool - can be an HTTP tool or a prompt template","example":{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}}},"ToolEntry":{"title":"ToolEntry","type":"object","properties":{"id":{"type":"string","description":"The ID of the tool","example":"Quae consectetur placeat."},"name":{"type":"string","description":"The name of the tool","example":"Dolorem est est fuga dolorem doloremque tempore."},"tool_urn":{"type":"string","description":"The URN of the tool","example":"Consequuntur optio aut minima."},"type":{"type":"string","example":"http","enum":["http","prompt"]}},"example":{"id":"Eius vitae nemo voluptatum ipsam sed.","name":"Vero natus assumenda autem.","tool_urn":"Mollitia nihil nihil blanditiis.","type":"http"},"required":["type","id","name","tool_urn"]},"ToolVariation":{"title":"ToolVariation","type":"object","properties":{"confirm":{"type":"string","description":"The confirmation mode for the tool variation","example":"Vitae dolores itaque quos dicta veniam."},"confirm_prompt":{"type":"string","description":"The confirmation prompt for the tool variation","example":"Neque consequatur quo deserunt ab eveniet commodi."},"created_at":{"type":"string","description":"The creation date of the tool variation","example":"Est ab voluptatum consequatur."},"description":{"type":"string","description":"The description of the tool variation","example":"Delectus consequatur voluptate."},"group_id":{"type":"string","description":"The ID of the tool variation group","example":"Non soluta dolores rem eos at."},"id":{"type":"string","description":"The ID of the tool variation","example":"Dolorem repellendus voluptate."},"name":{"type":"string","description":"The name of the tool variation","example":"Doloremque ipsum."},"src_tool_name":{"type":"string","description":"The name of the source tool","example":"Esse est."},"summarizer":{"type":"string","description":"The summarizer of the tool variation","example":"Rerum iusto et reiciendis consequuntur mollitia."},"summary":{"type":"string","description":"The summary of the tool variation","example":"Et vitae voluptatibus adipisci quidem praesentium eos."},"tags":{"type":"array","items":{"type":"string","example":"Non doloremque numquam dolores voluptatem voluptatum."},"description":"The tags of the tool variation","example":["Corrupti et dolores laboriosam provident.","Aut sint ut exercitationem maiores ut cumque.","Veniam adipisci sit culpa est corrupti."]},"updated_at":{"type":"string","description":"The last update date of the tool variation","example":"Id vero provident facilis facilis voluptate voluptatem."}},"example":{"confirm":"Sunt veritatis.","confirm_prompt":"Quod iusto pariatur totam.","created_at":"Minus totam.","description":"Quia quia.","group_id":"Voluptatem nesciunt omnis aliquam.","id":"Maiores inventore a atque et.","name":"Ratione ratione voluptatem corrupti blanditiis veritatis quia.","src_tool_name":"Enim vero facere.","summarizer":"Et dolorem veniam ut vero officia aperiam.","summary":"Hic rerum sit maxime quod vel.","tags":["Quis aut quo earum.","Facere neque optio animi earum harum quia."],"updated_at":"Molestiae id sit perferendis odit."},"required":["id","group_id","src_tool_name","created_at","updated_at"]},"ToolsListToolsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsListToolsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"Toolset":{"title":"Toolset","type":"object","properties":{"account_type":{"type":"string","description":"The account type of the organization","example":"Sed eos."},"created_at":{"type":"string","description":"When the toolset was created.","example":"1981-12-24T00:28:50Z","format":"date-time"},"custom_domain_id":{"type":"string","description":"The ID of the custom domain to use for the toolset","example":"Eos tempora est aspernatur."},"default_environment_slug":{"type":"string","description":"The slug of the environment to use as the default for the toolset","example":"s97","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"description":{"type":"string","description":"Description of the toolset","example":"Esse ut ut."},"external_oauth_server":{"$ref":"#/definitions/ExternalOAuthServer"},"id":{"type":"string","description":"The ID of the toolset","example":"Aut vel architecto harum laboriosam deleniti."},"mcp_enabled":{"type":"boolean","description":"Whether the toolset is enabled for MCP","example":true},"mcp_is_public":{"type":"boolean","description":"Whether the toolset is public in MCP","example":false},"mcp_slug":{"type":"string","description":"The slug of the MCP to use for the toolset","example":"3la","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"name":{"type":"string","description":"The name of the toolset","example":"Ea sed."},"oauth_proxy_server":{"$ref":"#/definitions/OAuthProxyServer"},"organization_id":{"type":"string","description":"The organization ID this toolset belongs to","example":"Et necessitatibus."},"project_id":{"type":"string","description":"The project ID this toolset belongs to","example":"Explicabo earum qui quibusdam reprehenderit alias enim."},"prompt_templates":{"type":"array","items":{"$ref":"#/definitions/PromptTemplate"},"description":"The prompt templates in this toolset -- Note: these are actual prompts, as in MCP prompts","example":[{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}]},"security_variables":{"type":"array","items":{"$ref":"#/definitions/SecurityVariable"},"description":"The security variables that are relevant to the toolset","example":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}]},"server_variables":{"type":"array","items":{"$ref":"#/definitions/ServerVariable"},"description":"The server variables that are relevant to the toolset","example":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}]},"slug":{"type":"string","description":"The slug of the toolset","example":"9sj","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"tool_urns":{"type":"array","items":{"type":"string","example":"Quaerat culpa vero voluptatem consequuntur."},"description":"The tool URNs in this toolset","example":["Recusandae veniam.","Cum porro nobis."]},"tools":{"type":"array","items":{"$ref":"#/definitions/Tool"},"description":"The tools in this toolset","example":[{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}}]},"updated_at":{"type":"string","description":"When the toolset was last updated.","example":"1986-07-24T03:13:59Z","format":"date-time"}},"example":{"account_type":"Laudantium iure dolore officiis voluptatem enim laborum.","created_at":"1982-12-08T03:23:01Z","custom_domain_id":"Enim rem.","default_environment_slug":"9l2","description":"Et ducimus optio ut distinctio tempora autem.","external_oauth_server":{"created_at":"1974-10-05T04:51:33Z","id":"Illo et.","metadata":"Ut quisquam accusantium.","project_id":"Modi a est qui quidem.","slug":"ym3","updated_at":"1974-07-16T10:00:26Z"},"id":"Provident nulla.","mcp_enabled":false,"mcp_is_public":false,"mcp_slug":"ozz","name":"Exercitationem voluptates et dolorum dolor provident et.","oauth_proxy_server":{"created_at":"1980-08-08T16:12:36Z","id":"Modi sit.","oauth_proxy_providers":[{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"},{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"},{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"},{"authorization_endpoint":"Illum iusto consectetur voluptas.","created_at":"1983-04-20T19:29:33Z","grant_types_supported":["Delectus repellat vitae et.","Non mollitia et non qui dolorem corporis."],"id":"Sunt quo sed molestiae vero recusandae vero.","scopes_supported":["Et impedit eaque culpa quia est et.","Ullam quaerat.","Voluptatum sit dolor consequuntur."],"slug":"kqa","token_endpoint":"Modi nesciunt error.","token_endpoint_auth_methods_supported":["Nemo corrupti beatae dolore dignissimos.","Assumenda consequuntur sint excepturi rerum non."],"updated_at":"2011-09-20T12:57:38Z"}],"project_id":"Provident odit dolore vel sunt totam assumenda.","slug":"zfj","updated_at":"1977-10-18T17:21:36Z"},"organization_id":"Enim voluptas non.","project_id":"Atque suscipit.","prompt_templates":[{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"slug":"v0a","tool_urns":["Enim eum non cum.","Veniam delectus ut."],"tools":[{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},{"http_tool_definition":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Corrupti rem aliquid quo.","confirm":"Doloremque eum non ut libero temporibus.","confirm_prompt":"Deserunt voluptatum eius.","created_at":"1986-01-12T10:11:19Z","default_server_url":"In voluptas.","deployment_id":"Excepturi debitis nemo et fugiat.","description":"Culpa doloribus atque.","http_method":"Sit nemo quo suscipit.","id":"Tempore earum dignissimos qui numquam in.","name":"Accusantium mollitia et sit excepturi.","openapiv3_document_id":"A quidem nobis beatae quis.","openapiv3_operation":"Ea quis labore harum iure vel ipsum.","package_name":"Aperiam incidunt.","path":"Temporibus voluptatem omnis aut nobis.","project_id":"Aliquid id nemo laudantium expedita fugiat ut.","response_filter":{"content_types":["Eum est non.","Corrupti iste.","Sunt beatae qui magni voluptas qui consequatur."],"status_codes":["Numquam iure provident sint.","Incidunt unde ut unde velit inventore.","Nulla impedit quibusdam eligendi itaque consequatur aperiam."],"type":"Neque modi dignissimos iste."},"schema":"Sunt unde nobis sequi suscipit eum consequuntur.","schema_version":"Voluptatem qui ut ut.","security":"Nisi velit voluptas doloremque dolorem laboriosam sit.","summarizer":"Sunt non aspernatur quis.","summary":"Aut assumenda voluptas.","tags":["Officia quia sit tenetur.","Minus cupiditate ut et minima.","Debitis magnam sunt perferendis aut magni.","Rerum aut recusandae voluptatum minus."],"tool_urn":"Aut temporibus eaque a quos perferendis.","updated_at":"1999-11-07T00:55:16Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"prompt_template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}}],"updated_at":"2007-03-18T16:56:15Z"},"required":["id","project_id","organization_id","account_type","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]},"ToolsetEntry":{"title":"ToolsetEntry","type":"object","properties":{"created_at":{"type":"string","description":"When the toolset was created.","example":"1978-08-02T16:19:33Z","format":"date-time"},"custom_domain_id":{"type":"string","description":"The ID of the custom domain to use for the toolset","example":"Aut mollitia accusamus aspernatur libero."},"default_environment_slug":{"type":"string","description":"The slug of the environment to use as the default for the toolset","example":"ftu","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"description":{"type":"string","description":"Description of the toolset","example":"Qui et harum officia voluptas ut."},"id":{"type":"string","description":"The ID of the toolset","example":"Ea distinctio."},"mcp_enabled":{"type":"boolean","description":"Whether the toolset is enabled for MCP","example":true},"mcp_is_public":{"type":"boolean","description":"Whether the toolset is public in MCP","example":true},"mcp_slug":{"type":"string","description":"The slug of the MCP to use for the toolset","example":"bcb","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"name":{"type":"string","description":"The name of the toolset","example":"Voluptate rerum et explicabo illo."},"organization_id":{"type":"string","description":"The organization ID this toolset belongs to","example":"Dolores inventore deserunt saepe."},"project_id":{"type":"string","description":"The project ID this toolset belongs to","example":"Sit voluptas officiis voluptatibus id quo."},"prompt_templates":{"type":"array","items":{"$ref":"#/definitions/PromptTemplateEntry"},"description":"The prompt templates in this toolset -- Note: these are actual prompts, as in MCP prompts","example":[{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"}]},"security_variables":{"type":"array","items":{"$ref":"#/definitions/SecurityVariable"},"description":"The security variables that are relevant to the toolset","example":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}]},"server_variables":{"type":"array","items":{"$ref":"#/definitions/ServerVariable"},"description":"The server variables that are relevant to the toolset","example":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}]},"slug":{"type":"string","description":"The slug of the toolset","example":"w8c","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"tool_urns":{"type":"array","items":{"type":"string","example":"Et corporis."},"description":"The tool URNs in this toolset","example":["Illo est culpa voluptates et at.","Sed occaecati occaecati placeat.","Officia ab amet occaecati vel."]},"tools":{"type":"array","items":{"$ref":"#/definitions/ToolEntry"},"description":"The tools in this toolset","example":[{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"}]},"updated_at":{"type":"string","description":"When the toolset was last updated.","example":"1987-11-12T20:55:25Z","format":"date-time"}},"example":{"created_at":"2012-06-29T19:22:37Z","custom_domain_id":"Quisquam ut autem eos.","default_environment_slug":"64o","description":"Aut a enim sunt dignissimos corporis.","id":"Laborum recusandae eum aperiam pariatur.","mcp_enabled":false,"mcp_is_public":false,"mcp_slug":"ab5","name":"Eligendi fugiat.","organization_id":"Natus mollitia deleniti quia reiciendis.","project_id":"Qui porro.","prompt_templates":[{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"},{"id":"Ducimus quisquam reprehenderit a sapiente odit.","kind":"Soluta dolorem voluptas omnis.","name":"pak"}],"security_variables":[{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."},{"bearer_format":"Commodi ratione sed dolorum.","env_variables":["Quidem est quaerat facere.","Doloribus consequuntur nihil delectus impedit.","Repellat reprehenderit odit rerum voluptate a."],"in_placement":"Sint et qui ab dolor et maxime.","name":"Asperiores exercitationem corrupti fuga earum.","oauth_flows":"VXQgY29ycG9yaXMu","oauth_types":["Qui aut quia iusto.","Natus ab sapiente perspiciatis et aliquam.","Ea ipsa.","Asperiores suscipit illum delectus sit aut debitis."],"scheme":"At sequi cum laborum et dignissimos.","type":"Molestias consequuntur et error veritatis."}],"server_variables":[{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]},{"description":"Et ut error animi voluptate.","env_variables":["Vel quia omnis.","Iste cumque pariatur et qui sequi.","Incidunt quas modi.","Et eius est ea optio tempora quam."]}],"slug":"fj0","tool_urns":["Voluptatum cumque dolorem.","Magnam dicta placeat.","Aspernatur et sunt ut odit."],"tools":[{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"},{"id":"Odit quas molestiae ipsa cum esse.","name":"Inventore eum aut et.","tool_urn":"Dolor in error quia.","type":"prompt"}],"updated_at":"2010-11-04T02:53:50Z"},"required":["id","project_id","organization_id","name","slug","tools","prompt_templates","tool_urns","created_at","updated_at"]},"ToolsetsAddExternalOAuthServerBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerRequestBody":{"title":"ToolsetsAddExternalOAuthServerRequestBody","type":"object","properties":{"external_oauth_server":{"$ref":"#/definitions/ExternalOAuthServerForm"}},"example":{"external_oauth_server":{"metadata":"Pariatur blanditiis tempora molestiae.","slug":"fyt"}},"required":["external_oauth_server"]},"ToolsetsAddExternalOAuthServerUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsAddExternalOAuthServerUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCheckMCPSlugAvailabilityUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCloneToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetRequestBody":{"title":"ToolsetsCreateToolsetRequestBody","type":"object","properties":{"default_environment_slug":{"type":"string","description":"The slug of the environment to use as the default for the toolset","example":"tx1","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"description":{"type":"string","description":"Description of the toolset","example":"Laborum voluptatibus expedita."},"name":{"type":"string","description":"The name of the toolset","example":"Vero adipisci iste quod perferendis optio voluptate."},"tool_urns":{"type":"array","items":{"type":"string","example":"Dicta delectus enim delectus."},"description":"List of tool URNs to include in the toolset","example":["Maiores neque error et consectetur.","Qui deleniti sed ut.","Quaerat consequatur quas.","Eius asperiores eos."]}},"example":{"default_environment_slug":"py9","description":"Voluptas odio eos.","name":"Adipisci aliquam quis nulla repudiandae ut.","tool_urns":["Aperiam ea labore et quo aperiam.","Vitae ut ducimus qui aspernatur.","Animi suscipit error consequatur."]},"required":["name"]},"ToolsetsCreateToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsCreateToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsDeleteToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsGetToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsListToolsetsUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsRemoveOAuthServerUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetRequestBody":{"title":"ToolsetsUpdateToolsetRequestBody","type":"object","properties":{"custom_domain_id":{"type":"string","description":"The ID of the custom domain to use for the toolset","example":"Dicta provident qui et culpa debitis distinctio."},"default_environment_slug":{"type":"string","description":"The slug of the environment to use as the default for the toolset","example":"jn5","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"description":{"type":"string","description":"The new description of the toolset","example":"Tempore provident nisi occaecati autem quis."},"mcp_enabled":{"type":"boolean","description":"Whether the toolset is enabled for MCP","example":true},"mcp_is_public":{"type":"boolean","description":"Whether the toolset is public in MCP","example":false},"mcp_slug":{"type":"string","description":"The slug of the MCP to use for the toolset","example":"ljy","pattern":"^[a-z0-9_-]{1,128}$","maxLength":40},"name":{"type":"string","description":"The new name of the toolset","example":"Aut rerum consequuntur."},"prompt_template_names":{"type":"array","items":{"type":"string","example":"Reprehenderit aut voluptates eos."},"description":"List of prompt template names to include (note: for actual prompts, not tools)","example":["Totam ut qui aut.","Optio delectus itaque omnis.","Aut aliquam veniam."]},"tool_urns":{"type":"array","items":{"type":"string","example":"Deserunt perferendis quod est inventore odit suscipit."},"description":"List of tool URNs to include in the toolset","example":["Nihil ipsum fugit consequatur modi.","Veritatis illo ut quo sequi aut.","Aperiam numquam culpa aut ipsa qui.","Culpa est sunt est dolores dolores voluptatem."]}},"example":{"custom_domain_id":"Voluptatem ducimus eveniet voluptatibus esse.","default_environment_slug":"jzn","description":"Rerum deserunt ea saepe et esse.","mcp_enabled":true,"mcp_is_public":true,"mcp_slug":"yjv","name":"Repellat non illum veritatis recusandae ipsa sit.","prompt_template_names":["Vel ea voluptatem consequuntur optio non.","Dolores distinctio magnam quia.","Veritatis doloremque.","Ut voluptas."],"tool_urns":["Dolorem sit itaque.","Facilis ut dolores maiores accusamus."]}},"ToolsetsUpdateToolsetUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"ToolsetsUpdateToolsetUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UpdatePackageResult":{"title":"UpdatePackageResult","type":"object","properties":{"package":{"$ref":"#/definitions/Package"}},"example":{"package":{"created_at":"1977-08-22T04:14:46Z","deleted_at":"1989-10-23T12:39:33Z","description":"Doloremque repellat molestiae.","description_raw":"Aut minima.","id":"Dignissimos fugit nihil dignissimos.","image_asset_id":"Ea nemo sunt aut qui reiciendis culpa.","keywords":["Amet iusto numquam saepe ex architecto.","Possimus est."],"latest_version":"Aliquam ad labore dolor aut quam voluptatum.","name":"Officiis impedit vel.","organization_id":"Adipisci suscipit vitae cupiditate provident qui.","project_id":"Natus quos officia quisquam.","summary":"Aut minus.","title":"Provident qui ut sed et.","updated_at":"2012-11-12T16:52:50Z","url":"Ut facere quasi magni cum sit."}},"required":["package"]},"UpdatePromptTemplateResult":{"title":"UpdatePromptTemplateResult","type":"object","properties":{"template":{"$ref":"#/definitions/PromptTemplate"}},"example":{"template":{"canonical":{"confirm":"At tempora voluptatem ullam consectetur impedit.","confirm_prompt":"Nihil quo voluptatem.","description":"Explicabo perspiciatis vero.","name":"Vero voluptatem excepturi modi iusto.","summarizer":"Deleniti voluptas dolorem et exercitationem unde placeat.","summary":"Ut et velit facere.","tags":["Voluptas nulla culpa corporis vel nam.","Aut ut voluptas et quo."],"variation_id":"Et possimus et iusto facere."},"canonical_name":"Incidunt quia sed sint quo tempore et.","confirm":"Ut inventore voluptates vitae ducimus.","confirm_prompt":"Delectus saepe qui tempore.","created_at":"1996-10-25T11:46:13Z","description":"Mollitia cupiditate.","engine":"mustache","history_id":"Unde quam quasi cupiditate.","id":"Et exercitationem.","kind":"higher_order_tool","name":"Explicabo aut iusto sit eveniet in.","predecessor_id":"Maiores enim ut et quis nesciunt.","project_id":"Assumenda libero alias aliquam quasi.","prompt":"Deserunt laudantium excepturi quia omnis.","schema":"Natus culpa.","schema_version":"Veniam dolorem recusandae consequatur veritatis.","summarizer":"Mollitia pariatur vitae assumenda voluptate.","tool_urn":"Magnam libero.","tools_hint":["Eos nesciunt.","Et et sit illum porro.","Asperiores harum aut ratione cupiditate et ipsam."],"updated_at":"1994-07-10T08:42:31Z","variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}}},"required":["template"]},"UploadFunctionsResult":{"title":"UploadFunctionsResult","type":"object","properties":{"asset":{"$ref":"#/definitions/Asset"}},"example":{"asset":{"content_length":1132377214323733000,"content_type":"Labore repellat ut quae nostrum.","created_at":"1995-06-21T21:27:59Z","id":"Magni sit nemo.","kind":"unknown","sha256":"Quas praesentium voluptatem quo.","updated_at":"1983-08-25T01:13:59Z"}},"required":["asset"]},"UploadImageResult":{"title":"UploadImageResult","type":"object","properties":{"asset":{"$ref":"#/definitions/Asset"}},"example":{"asset":{"content_length":1132377214323733000,"content_type":"Labore repellat ut quae nostrum.","created_at":"1995-06-21T21:27:59Z","id":"Magni sit nemo.","kind":"unknown","sha256":"Quas praesentium voluptatem quo.","updated_at":"1983-08-25T01:13:59Z"}},"required":["asset"]},"UploadOpenAPIv3Result":{"title":"UploadOpenAPIv3Result","type":"object","properties":{"asset":{"$ref":"#/definitions/Asset"}},"example":{"asset":{"content_length":1132377214323733000,"content_type":"Labore repellat ut quae nostrum.","created_at":"1995-06-21T21:27:59Z","id":"Magni sit nemo.","kind":"unknown","sha256":"Quas praesentium voluptatem quo.","updated_at":"1983-08-25T01:13:59Z"}},"required":["asset"]},"UpsertGlobalToolVariationResult":{"title":"UpsertGlobalToolVariationResult","type":"object","properties":{"variation":{"$ref":"#/definitions/ToolVariation"}},"example":{"variation":{"confirm":"Qui incidunt distinctio omnis laboriosam.","confirm_prompt":"Nam ea consequatur et sit rem.","created_at":"Quia maiores sapiente eos.","description":"Laudantium nam quas repellat sed quia sed.","group_id":"Optio ducimus quia aut modi.","id":"Commodi aliquam odio nesciunt laboriosam consequatur.","name":"Et quia nemo sed ut.","src_tool_name":"Vel delectus error sed iste.","summarizer":"Nemo explicabo rem similique quos voluptates enim.","summary":"Odit blanditiis eos laboriosam eum.","tags":["Rerum rerum optio.","Eveniet ratione nisi.","Officiis maiores ea in minus."],"updated_at":"Odio est eius sint itaque."}},"required":["variation"]},"UsageCreateCheckoutBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCheckoutUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageCreateCustomerSessionUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetPeriodUsageUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageGetUsageTiersUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"UsageTiers":{"title":"UsageTiers","type":"object","properties":{"enterprise":{"$ref":"#/definitions/TierLimits"},"free":{"$ref":"#/definitions/TierLimits"},"pro":{"$ref":"#/definitions/TierLimits"}},"example":{"enterprise":{"add_on_bullets":["Qui molestias voluptates quidem minus et.","Accusantium ea molestiae.","Repudiandae explicabo tenetur."],"base_price":0.5484396811061183,"feature_bullets":["Optio quidem quidem assumenda cupiditate ad.","Tempora tenetur accusamus omnis.","Nam quisquam unde velit aut nihil sapiente.","Dolores expedita dicta qui rerum."],"included_bullets":["Porro recusandae excepturi.","Eum voluptatibus et sit laudantium ducimus.","Et reprehenderit amet laboriosam tempore et veniam.","Vel officia similique temporibus est."],"included_credits":4071120265921802035,"included_servers":5321693193885762111,"included_tool_calls":4527521988887562542,"price_per_additional_credit":0.10077546942540597,"price_per_additional_server":0.4510383707119032,"price_per_additional_tool_call":0.6398107655385122},"free":{"add_on_bullets":["Qui molestias voluptates quidem minus et.","Accusantium ea molestiae.","Repudiandae explicabo tenetur."],"base_price":0.5484396811061183,"feature_bullets":["Optio quidem quidem assumenda cupiditate ad.","Tempora tenetur accusamus omnis.","Nam quisquam unde velit aut nihil sapiente.","Dolores expedita dicta qui rerum."],"included_bullets":["Porro recusandae excepturi.","Eum voluptatibus et sit laudantium ducimus.","Et reprehenderit amet laboriosam tempore et veniam.","Vel officia similique temporibus est."],"included_credits":4071120265921802035,"included_servers":5321693193885762111,"included_tool_calls":4527521988887562542,"price_per_additional_credit":0.10077546942540597,"price_per_additional_server":0.4510383707119032,"price_per_additional_tool_call":0.6398107655385122},"pro":{"add_on_bullets":["Qui molestias voluptates quidem minus et.","Accusantium ea molestiae.","Repudiandae explicabo tenetur."],"base_price":0.5484396811061183,"feature_bullets":["Optio quidem quidem assumenda cupiditate ad.","Tempora tenetur accusamus omnis.","Nam quisquam unde velit aut nihil sapiente.","Dolores expedita dicta qui rerum."],"included_bullets":["Porro recusandae excepturi.","Eum voluptatibus et sit laudantium ducimus.","Et reprehenderit amet laboriosam tempore et veniam.","Vel officia similique temporibus est."],"included_credits":4071120265921802035,"included_servers":5321693193885762111,"included_tool_calls":4527521988887562542,"price_per_additional_credit":0.10077546942540597,"price_per_additional_server":0.4510383707119032,"price_per_additional_tool_call":0.6398107655385122}},"required":["free","pro","enterprise"]},"VariationsDeleteGlobalBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsDeleteGlobalUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request is invalid (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"resource not found (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsListGlobalUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalBadRequestResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"request is invalid (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalConflictResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource already exists (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalForbiddenResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"permission denied (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":true,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalGatewayErrorResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalInvalidResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"request contains one or more invalidation fields (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalInvariantViolationResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"an unexpected error occurred (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalNotFoundResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"resource not found (default view)","example":{"fault":false,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalRequestBody":{"title":"VariationsUpsertGlobalRequestBody","type":"object","properties":{"confirm":{"type":"string","description":"The confirmation mode for the tool variation","example":"always","enum":["always","never","session"]},"confirm_prompt":{"type":"string","description":"The confirmation prompt for the tool variation","example":"Ut quae ex suscipit."},"description":{"type":"string","description":"The description of the tool variation","example":"Sit eius."},"name":{"type":"string","description":"The name of the tool variation","example":"Occaecati sit qui qui dolores."},"src_tool_name":{"type":"string","description":"The name of the source tool","example":"Eligendi aliquid."},"summarizer":{"type":"string","description":"The summarizer of the tool variation","example":"Beatae voluptas et nobis iure in."},"summary":{"type":"string","description":"The summary of the tool variation","example":"Quod enim."},"tags":{"type":"array","items":{"type":"string","example":"Voluptas voluptatum quis optio suscipit amet esse."},"description":"The tags of the tool variation","example":["Non ab vel repudiandae ipsa qui.","Et ut omnis sunt.","Incidunt fugiat quos necessitatibus tempore."]}},"example":{"confirm":"always","confirm_prompt":"Quibusdam voluptates tempora debitis sequi alias.","description":"Sit illo similique deleniti aperiam voluptatum et.","name":"Maiores laudantium.","src_tool_name":"Porro amet dolorem necessitatibus.","summarizer":"Laborum voluptatem reiciendis voluptas.","summary":"Fugiat est earum.","tags":["Harum ducimus suscipit velit.","Magnam illum qui.","Esse perspiciatis laboriosam ex sit.","Quas facilis nesciunt aut repudiandae praesentium aspernatur."]},"required":["src_tool_name"]},"VariationsUpsertGlobalUnauthorizedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":false},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"unauthorized access (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":false},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalUnexpectedResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":true},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":true}},"description":"an unexpected error occurred (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]},"VariationsUpsertGlobalUnsupportedMediaResponseBody":{"title":"Mediatype identifier: application/vnd.goa.error; view=default","type":"object","properties":{"fault":{"type":"boolean","description":"Is the error a server-side fault?","example":true},"id":{"type":"string","description":"ID is a unique identifier for this particular occurrence of the problem.","example":"123abc"},"message":{"type":"string","description":"Message is a human-readable explanation specific to this occurrence of the problem.","example":"parameter 'p' must be an integer"},"name":{"type":"string","description":"Name is the name of this class of errors.","example":"bad_request"},"temporary":{"type":"boolean","description":"Is the error temporary?","example":false},"timeout":{"type":"boolean","description":"Is the error a timeout?","example":false}},"description":"unsupported media type (default view)","example":{"fault":true,"id":"123abc","message":"parameter 'p' must be an integer","name":"bad_request","temporary":false,"timeout":true},"required":["name","id","message","temporary","timeout","fault"]}},"securityDefinitions":{"apikey_header_Gram-Key":{"type":"apiKey","description":"key based auth.\n\n**Security Scopes**:\n * `consumer`: consumer based tool access\n * `producer`: producer based tool access","name":"Gram-Key","in":"header"},"project_slug_header_Gram-Project":{"type":"apiKey","description":"project slug header auth.","name":"Gram-Project","in":"header"},"project_slug_query_project_slug":{"type":"apiKey","description":"project slug header auth.","name":"project_slug","in":"query"},"session_header_Gram-Session":{"type":"apiKey","description":"Session based auth. By cookie or header.","name":"Gram-Session","in":"header"}}} \ No newline at end of file diff --git a/server/gen/http/openapi.yaml b/server/gen/http/openapi.yaml index 3be877c92..b52e80331 100644 --- a/server/gen/http/openapi.yaml +++ b/server/gen/http/openapi.yaml @@ -6018,14 +6018,14 @@ definitions: name: type: string description: The name of the package. - example: Quis labore accusantium unde. + example: Laborum neque aut. version: type: string description: The version of the package. - example: Non minus quia temporibus modi laboriosam. + example: Dolore dolor quaerat illo aut necessitatibus adipisci. example: - name: Id animi. - version: Pariatur ea eos corrupti. + name: Repellat esse nisi. + version: Rerum ducimus. required: - name AddFunctionsForm: @@ -6035,26 +6035,26 @@ definitions: asset_id: type: string description: The ID of the functions file from the assets service. - example: Non adipisci facere veritatis ut. + example: Perferendis ea quis. name: type: string description: The functions file display name. - example: Corrupti id voluptatem molestiae molestias voluptatibus. + example: Accusantium unde facilis non. runtime: type: string description: 'The runtime to use when executing functions. Allowed values are: nodejs:22, python:3.12.' - example: Iste eum repudiandae nostrum facere. + example: Ducimus id animi dolor pariatur. slug: type: string description: A URL-friendly string that identifies the functions file. Usually derived from the name. - example: mah + example: gp7 pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 example: - asset_id: Molestias rerum laborum dolores voluptas. - name: Error libero temporibus provident. - runtime: Esse animi autem veritatis cum non sunt. - slug: m5v + asset_id: Eos corrupti ut qui optio aut sed. + name: Saepe recusandae delectus. + runtime: Aliquid vel illo voluptatem. + slug: f1q required: - asset_id - name @@ -6067,21 +6067,21 @@ definitions: asset_id: type: string description: The ID of the uploaded asset. - example: Voluptatum qui et eum et dolorem. + example: Ut nam. name: type: string description: The name to give the document as it will be displayed in UIs. - example: Quisquam qui blanditiis ex et dolor. + example: Perferendis iste eum repudiandae nostrum facere iure. slug: type: string description: The slug to give the document as it will be displayed in URLs. - example: c29 + example: xgr pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 example: - asset_id: Eum non libero asperiores voluptatem quos inventore. - name: Facilis quod eius sit. - slug: 1pi + asset_id: Maxime error libero temporibus provident quaerat et. + name: Commodi quidem esse. + slug: pbu required: - asset_id - name @@ -6093,14 +6093,14 @@ definitions: name: type: string description: The name of the package to add. - example: Ducimus impedit nihil rem suscipit aliquid repellat. + example: Eum eligendi sit. version: type: string description: The version of the package to add. If omitted, the latest version will be used. - example: Tempora magni ipsam. + example: Et aut dolores iure. example: - name: Eveniet dolor quas rerum. - version: Sed soluta quas. + name: In quisquam dolores est. + version: Odit dolor. required: - name Asset: @@ -6110,24 +6110,24 @@ definitions: content_length: type: integer description: The content length of the asset - example: 826917556528728549 + example: 7568219703724083679 format: int64 content_type: type: string description: The content type of the asset - example: Dolores fugiat tempore similique qui. + example: Distinctio ut. created_at: type: string description: The creation date of the asset. - example: "1972-12-20T18:36:54Z" + example: "1992-09-06T07:07:46Z" format: date-time id: type: string description: The ID of the asset - example: Dicta nam enim nulla. + example: Qui et. kind: type: string - example: image + example: openapiv3 enum: - openapiv3 - image @@ -6136,20 +6136,20 @@ definitions: sha256: type: string description: The SHA256 hash of the asset - example: Officia maiores ea porro vitae culpa. + example: Quas voluptatum non sed nemo odit similique. updated_at: type: string description: The last update date of the asset. - example: "1975-04-03T22:51:46Z" + example: "1972-08-14T23:24:26Z" format: date-time example: - content_length: 972143798899171096 - content_type: Aperiam recusandae voluptatem autem. - created_at: "1977-08-10T02:12:01Z" - id: Ut similique nostrum suscipit dolor excepturi rerum. - kind: image - sha256: Id quas. - updated_at: "1988-04-10T02:47:49Z" + content_length: 6888545932452624070 + content_type: Consectetur similique ut exercitationem repudiandae sed corrupti. + created_at: "1988-10-15T20:43:45Z" + id: Recusandae voluptatem autem non et nostrum eveniet. + kind: functions + sha256: Qui saepe. + updated_at: "1993-04-07T03:55:08Z" required: - id - kind @@ -6185,14 +6185,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -6208,7 +6208,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -6231,7 +6231,7 @@ definitions: example: true description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -6267,11 +6267,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: fault: true @@ -6310,18 +6310,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -6365,7 +6365,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -6396,7 +6396,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -6423,7 +6423,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -6439,19 +6439,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -6466,7 +6466,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -6489,12 +6489,12 @@ definitions: example: true description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -6536,7 +6536,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -6568,18 +6568,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -6595,7 +6595,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -6611,7 +6611,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -6622,8 +6622,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -6654,19 +6654,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -6681,7 +6681,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -6697,14 +6697,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -6724,7 +6724,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -6744,10 +6744,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -6767,7 +6767,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -6787,15 +6787,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -6837,7 +6837,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -6853,7 +6853,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -6873,7 +6873,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: fault: true @@ -6896,7 +6896,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -6912,7 +6912,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -6924,7 +6924,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -6955,11 +6955,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true @@ -6967,7 +6967,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -6998,18 +6998,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -7041,18 +7041,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -7068,7 +7068,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7088,14 +7088,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -7131,15 +7131,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -7154,7 +7154,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7170,18 +7170,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -7220,11 +7220,11 @@ definitions: example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -7256,7 +7256,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -7268,7 +7268,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -7283,7 +7283,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7306,7 +7306,7 @@ definitions: example: true description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -7326,7 +7326,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7342,18 +7342,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -7385,7 +7385,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -7396,8 +7396,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -7412,7 +7412,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7428,18 +7428,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -7475,15 +7475,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -7498,7 +7498,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7525,8 +7525,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -7557,19 +7557,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -7584,7 +7584,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7600,14 +7600,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -7627,7 +7627,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7650,12 +7650,12 @@ definitions: example: false description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -7670,7 +7670,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7686,19 +7686,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -7729,7 +7729,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -7772,18 +7772,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -7815,18 +7815,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -7869,7 +7869,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -7913,7 +7913,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -7928,7 +7928,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7955,7 +7955,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -7971,7 +7971,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -7987,19 +7987,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -8014,7 +8014,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -8030,18 +8030,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -8077,15 +8077,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -8120,10 +8120,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -8163,7 +8163,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: fault: true @@ -8186,7 +8186,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -8202,18 +8202,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -8249,15 +8249,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -8299,8 +8299,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -8335,14 +8335,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -8358,7 +8358,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -8385,8 +8385,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -8460,7 +8460,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -8507,15 +8507,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -8530,7 +8530,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -8550,14 +8550,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -8573,7 +8573,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -8589,19 +8589,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -8616,7 +8616,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -8639,12 +8639,12 @@ definitions: example: true description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -8682,11 +8682,11 @@ definitions: example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -8722,7 +8722,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: false @@ -8730,7 +8730,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -8768,12 +8768,12 @@ definitions: example: false description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -8788,7 +8788,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -8804,18 +8804,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -8831,7 +8831,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -8851,10 +8851,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -8894,14 +8894,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -8933,7 +8933,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -8960,7 +8960,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -8980,15 +8980,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -9003,7 +9003,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9026,11 +9026,11 @@ definitions: example: true description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -9046,7 +9046,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9066,15 +9066,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -9089,7 +9089,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9112,11 +9112,11 @@ definitions: example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -9132,7 +9132,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9148,14 +9148,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -9175,7 +9175,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9195,14 +9195,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -9218,7 +9218,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9234,19 +9234,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -9261,7 +9261,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9281,7 +9281,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: false @@ -9298,92 +9298,6 @@ definitions: - timeout - fault AuthInfoGatewayErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - AuthInfoInvalidResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: request contains one or more invalidation fields (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - AuthInfoInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9413,12 +9327,12 @@ definitions: example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -9426,14 +9340,14 @@ definitions: - temporary - timeout - fault - AuthInfoNotFoundResponseBody: + AuthInfoInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9449,19 +9363,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: resource not found (default view) + example: true + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -9469,121 +9383,7 @@ definitions: - temporary - timeout - fault - AuthInfoResponseBody: - title: AuthInfoResponseBody - type: object - properties: - active_organization_id: - type: string - example: Eos aut ut molestiae itaque. - gram_account_type: - type: string - example: Quo maxime assumenda labore. - is_admin: - type: boolean - example: false - organizations: - type: array - items: - $ref: '#/definitions/OrganizationEntry' - example: - - id: Iusto alias et ea quisquam nostrum itaque. - name: Eius est ut odit magni. - projects: - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - slug: Blanditiis ut. - sso_connection_id: Quo dolor vero dolorum. - user_workspace_slugs: - - Voluptatem quae totam quisquam laborum qui. - - Sunt quia. - - Et eos minima ut assumenda similique. - - Sunt voluptatem veniam blanditiis. - - id: Iusto alias et ea quisquam nostrum itaque. - name: Eius est ut odit magni. - projects: - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - slug: Blanditiis ut. - sso_connection_id: Quo dolor vero dolorum. - user_workspace_slugs: - - Voluptatem quae totam quisquam laborum qui. - - Sunt quia. - - Et eos minima ut assumenda similique. - - Sunt voluptatem veniam blanditiis. - user_display_name: - type: string - example: Quam accusamus provident dolorem reiciendis ea. - user_email: - type: string - example: Dolores in error sunt ducimus. - user_id: - type: string - example: Provident dolorem. - user_photo_url: - type: string - example: Facere quaerat aut doloribus necessitatibus nihil. - user_signature: - type: string - example: Eos est dolor id quidem non qui. - example: - active_organization_id: Odio quia consequatur vitae. - gram_account_type: Repellat nulla voluptates eos. - is_admin: false - organizations: - - id: Iusto alias et ea quisquam nostrum itaque. - name: Eius est ut odit magni. - projects: - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - slug: Blanditiis ut. - sso_connection_id: Quo dolor vero dolorum. - user_workspace_slugs: - - Voluptatem quae totam quisquam laborum qui. - - Sunt quia. - - Et eos minima ut assumenda similique. - - Sunt voluptatem veniam blanditiis. - - id: Iusto alias et ea quisquam nostrum itaque. - name: Eius est ut odit magni. - projects: - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - slug: Blanditiis ut. - sso_connection_id: Quo dolor vero dolorum. - user_workspace_slugs: - - Voluptatem quae totam quisquam laborum qui. - - Sunt quia. - - Et eos minima ut assumenda similique. - - Sunt voluptatem veniam blanditiis. - user_display_name: Recusandae ab ut voluptatem corporis incidunt laborum. - user_email: Saepe reprehenderit. - user_id: Ad cum. - user_photo_url: Sed distinctio. - user_signature: Qui et sint. - required: - - user_id - - user_email - - is_admin - - active_organization_id - - organizations - - gram_account_type - AuthInfoUnauthorizedResponseBody: + AuthInfoInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9606,19 +9406,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (default view) + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -9626,14 +9426,14 @@ definitions: - temporary - timeout - fault - AuthInfoUnexpectedResponseBody: + AuthInfoNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9653,15 +9453,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + example: false + description: resource not found (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -9669,7 +9469,190 @@ definitions: - temporary - timeout - fault - AuthInfoUnsupportedMediaResponseBody: + AuthInfoResponseBody: + title: AuthInfoResponseBody + type: object + properties: + active_organization_id: + type: string + example: Non veritatis velit labore velit aut. + gram_account_type: + type: string + example: Et consectetur. + is_admin: + type: boolean + example: false + organizations: + type: array + items: + $ref: '#/definitions/OrganizationEntry' + example: + - id: Eveniet voluptatem quae totam quisquam laborum qui. + name: Sunt quia. + projects: + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + slug: Et eos minima ut assumenda similique. + sso_connection_id: Maiores dolore consequatur voluptate quia qui consectetur. + user_workspace_slugs: + - Laboriosam voluptates quisquam possimus. + - Fuga ratione voluptatem. + - Aspernatur repellendus. + - Consectetur et vel. + - id: Eveniet voluptatem quae totam quisquam laborum qui. + name: Sunt quia. + projects: + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + slug: Et eos minima ut assumenda similique. + sso_connection_id: Maiores dolore consequatur voluptate quia qui consectetur. + user_workspace_slugs: + - Laboriosam voluptates quisquam possimus. + - Fuga ratione voluptatem. + - Aspernatur repellendus. + - Consectetur et vel. + - id: Eveniet voluptatem quae totam quisquam laborum qui. + name: Sunt quia. + projects: + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + slug: Et eos minima ut assumenda similique. + sso_connection_id: Maiores dolore consequatur voluptate quia qui consectetur. + user_workspace_slugs: + - Laboriosam voluptates quisquam possimus. + - Fuga ratione voluptatem. + - Aspernatur repellendus. + - Consectetur et vel. + - id: Eveniet voluptatem quae totam quisquam laborum qui. + name: Sunt quia. + projects: + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + slug: Et eos minima ut assumenda similique. + sso_connection_id: Maiores dolore consequatur voluptate quia qui consectetur. + user_workspace_slugs: + - Laboriosam voluptates quisquam possimus. + - Fuga ratione voluptatem. + - Aspernatur repellendus. + - Consectetur et vel. + user_display_name: + type: string + example: Maxime assumenda labore quas rem quibusdam. + user_email: + type: string + example: Facere quaerat aut doloribus necessitatibus nihil. + user_id: + type: string + example: Quam accusamus provident dolorem reiciendis ea. + user_photo_url: + type: string + example: Nesciunt blanditiis distinctio. + user_signature: + type: string + example: Sit eos aut ut molestiae itaque quia. + example: + active_organization_id: Facilis non. + gram_account_type: Optio architecto. + is_admin: true + organizations: + - id: Eveniet voluptatem quae totam quisquam laborum qui. + name: Sunt quia. + projects: + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + slug: Et eos minima ut assumenda similique. + sso_connection_id: Maiores dolore consequatur voluptate quia qui consectetur. + user_workspace_slugs: + - Laboriosam voluptates quisquam possimus. + - Fuga ratione voluptatem. + - Aspernatur repellendus. + - Consectetur et vel. + - id: Eveniet voluptatem quae totam quisquam laborum qui. + name: Sunt quia. + projects: + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + slug: Et eos minima ut assumenda similique. + sso_connection_id: Maiores dolore consequatur voluptate quia qui consectetur. + user_workspace_slugs: + - Laboriosam voluptates quisquam possimus. + - Fuga ratione voluptatem. + - Aspernatur repellendus. + - Consectetur et vel. + - id: Eveniet voluptatem quae totam quisquam laborum qui. + name: Sunt quia. + projects: + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + slug: Et eos minima ut assumenda similique. + sso_connection_id: Maiores dolore consequatur voluptate quia qui consectetur. + user_workspace_slugs: + - Laboriosam voluptates quisquam possimus. + - Fuga ratione voluptatem. + - Aspernatur repellendus. + - Consectetur et vel. + user_display_name: Ea itaque officiis doloribus praesentium. + user_email: Repellat nulla voluptates eos. + user_id: Distinctio voluptatem maiores odio quia consequatur vitae. + user_photo_url: Repellendus qui. + user_signature: Quos repellat in quia sed molestias. + required: + - user_id + - user_email + - is_admin + - active_organization_id + - organizations + - gram_account_type + AuthInfoUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9692,18 +9675,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: unsupported media type (default view) + description: unauthorized access (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -9712,7 +9695,7 @@ definitions: - temporary - timeout - fault - AuthLoginBadRequestResponseBody: + AuthInfoUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9735,12 +9718,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: request is invalid (default view) + description: an unexpected error occurred (default view) example: fault: false id: 123abc @@ -9755,7 +9738,7 @@ definitions: - temporary - timeout - fault - AuthLoginConflictResponseBody: + AuthInfoUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9782,15 +9765,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource already exists (default view) + example: false + description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -9798,7 +9781,7 @@ definitions: - temporary - timeout - fault - AuthLoginForbiddenResponseBody: + AuthLoginBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9825,15 +9808,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: permission denied (default view) + example: true + description: request is invalid (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -9841,7 +9824,7 @@ definitions: - temporary - timeout - fault - AuthLoginGatewayErrorResponseBody: + AuthLoginConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9864,18 +9847,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -9884,14 +9867,14 @@ definitions: - temporary - timeout - fault - AuthLoginInvalidResponseBody: + AuthLoginForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9911,15 +9894,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: request contains one or more invalidation fields (default view) + example: true + description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -9927,7 +9910,7 @@ definitions: - temporary - timeout - fault - AuthLoginInvariantViolationResponseBody: + AuthLoginGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9950,14 +9933,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -9970,7 +9953,7 @@ definitions: - temporary - timeout - fault - AuthLoginNotFoundResponseBody: + AuthLoginInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9993,18 +9976,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: resource not found (default view) + example: true + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -10013,14 +9996,14 @@ definitions: - temporary - timeout - fault - AuthLoginUnauthorizedResponseBody: + AuthLoginInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10036,14 +10019,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (default view) + example: true + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -10056,14 +10039,14 @@ definitions: - temporary - timeout - fault - AuthLoginUnexpectedResponseBody: + AuthLoginNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10083,8 +10066,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + example: true + description: resource not found (default view) example: fault: false id: 123abc @@ -10099,7 +10082,7 @@ definitions: - temporary - timeout - fault - AuthLoginUnsupportedMediaResponseBody: + AuthLoginUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10122,18 +10105,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: unsupported media type (default view) + example: false + description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -10142,7 +10125,7 @@ definitions: - temporary - timeout - fault - AuthLogoutBadRequestResponseBody: + AuthLoginUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10170,13 +10153,13 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: request is invalid (default view) + description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -10185,14 +10168,14 @@ definitions: - temporary - timeout - fault - AuthLogoutConflictResponseBody: + AuthLoginUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10208,18 +10191,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: resource already exists (default view) + example: true + description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -10228,7 +10211,93 @@ definitions: - temporary - timeout - fault - AuthLogoutForbiddenResponseBody: + AuthLogoutBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: request is invalid (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + AuthLogoutConflictResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: resource already exists (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + AuthLogoutForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10258,7 +10327,7 @@ definitions: example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -10278,7 +10347,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10298,15 +10367,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -10321,7 +10390,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10337,14 +10406,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -10384,7 +10453,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false @@ -10392,7 +10461,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -10434,7 +10503,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -10466,7 +10535,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -10477,7 +10546,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -10493,7 +10562,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10536,7 +10605,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10552,19 +10621,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -10579,7 +10648,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10595,14 +10664,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -10622,7 +10691,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10645,12 +10714,12 @@ definitions: example: false description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -10665,7 +10734,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10685,15 +10754,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -10724,14 +10793,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -10751,7 +10820,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10774,12 +10843,12 @@ definitions: example: true description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -10794,7 +10863,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10817,7 +10886,7 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -10864,7 +10933,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -10880,9 +10949,9 @@ definitions: org_name: type: string description: The name of the org to register - example: Et tempora aut libero. + example: Error sunt ducimus dignissimos eos. example: - org_name: Autem dolorem earum. + org_name: Dolor id quidem non qui. required: - org_name AuthRegisterUnauthorizedResponseBody: @@ -10892,7 +10961,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10919,8 +10988,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -10935,7 +11004,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10951,7 +11020,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -10978,7 +11047,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10998,7 +11067,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: false @@ -11021,7 +11090,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11037,11 +11106,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: true @@ -11091,7 +11160,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -11107,7 +11176,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11123,14 +11192,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -11170,15 +11239,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -11209,19 +11278,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -11252,62 +11321,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - AuthSwitchScopesNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false timeout: type: boolean description: Is the error a timeout? example: false - description: resource not found (default view) + description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -11315,7 +11341,7 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesUnauthorizedResponseBody: + AuthSwitchScopesNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11338,7 +11364,50 @@ definitions: temporary: type: boolean description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? example: false + description: resource not found (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + AuthSwitchScopesUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true timeout: type: boolean description: Is the error a timeout? @@ -11350,7 +11419,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -11365,7 +11434,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11385,7 +11454,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: true @@ -11428,15 +11497,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -11451,53 +11520,54 @@ definitions: confirm: type: string description: Confirmation mode for the tool - example: Numquam consequatur debitis fugiat minima adipisci nulla. + example: Non voluptatem voluptatem voluptas recusandae architecto quibusdam. confirm_prompt: type: string description: Prompt for the confirmation - example: Fugit aliquid aut amet nostrum. + example: Repellendus consequatur consectetur. description: type: string description: Description of the tool - example: Nulla ut architecto. + example: Facilis quasi sit. name: type: string description: The name of the tool - example: Dolores suscipit aliquam non. + example: Tempora occaecati doloremque reprehenderit. summarizer: type: string description: Summarizer for the tool - example: Dicta adipisci quia magni. + example: Temporibus mollitia aut aperiam. summary: type: string description: Summary of the tool - example: Voluptates minus. + example: Alias ducimus ipsum doloribus assumenda. tags: type: array items: type: string - example: Optio necessitatibus quae reprehenderit aut quia. + example: Officiis eum. description: The tags list for this http tool example: - - Quod quaerat quaerat rerum occaecati iste. - - Vel eos cupiditate. - - Repellat et officia ullam error. + - Quis iusto eos tenetur. + - Reprehenderit maxime reprehenderit. + - Repellendus aut consequuntur sequi. variation_id: type: string description: The ID of the variation that was applied to the tool - example: Aut et maxime quo et est. + example: Explicabo et aut. description: The original details of a tool example: - confirm: Assumenda et. - confirm_prompt: Quasi sit quas. - description: Ducimus ipsum. - name: Voluptatum eos ut explicabo et aut maiores. - summarizer: Voluptatem voluptatem. - summary: Occaecati doloremque reprehenderit est. + confirm: Maiores magni eligendi velit. + confirm_prompt: Vel et. + description: Exercitationem corporis. + name: Sapiente ut ipsum. + summarizer: Asperiores et maxime est illum. + summary: Sunt culpa iusto non consequatur officiis. tags: - - Architecto quibusdam eligendi. - - Consequatur consectetur. - variation_id: Fugit rerum aliquam ratione. + - Vel recusandae laudantium. + - Voluptas deleniti suscipit dolore commodi ut. + - Nobis eaque et ut accusantium. + variation_id: Optio quo qui hic at. required: - variation_id - name @@ -11508,107 +11578,107 @@ definitions: created_at: type: string description: When the chat was created. - example: "1980-09-03T05:07:37Z" + example: "1987-11-24T11:45:08Z" format: date-time id: type: string description: The ID of the chat - example: Harum consequatur aut. + example: Dolores non doloremque quisquam. messages: type: array items: $ref: '#/definitions/ChatMessage' description: The list of messages in the chat example: - - content: Totam voluptatem tempora consequatur. - created_at: "1996-02-29T20:17:00Z" - finish_reason: Inventore accusamus accusamus aut repudiandae. - id: Qui est repudiandae sint placeat sed explicabo. - model: Omnis laudantium distinctio qui. - role: Esse perspiciatis totam iure. - tool_call_id: Earum culpa rem et nulla. - tool_calls: Autem ut in repellendus cupiditate. - user_id: Facere minus ratione qui. - - content: Totam voluptatem tempora consequatur. - created_at: "1996-02-29T20:17:00Z" - finish_reason: Inventore accusamus accusamus aut repudiandae. - id: Qui est repudiandae sint placeat sed explicabo. - model: Omnis laudantium distinctio qui. - role: Esse perspiciatis totam iure. - tool_call_id: Earum culpa rem et nulla. - tool_calls: Autem ut in repellendus cupiditate. - user_id: Facere minus ratione qui. - - content: Totam voluptatem tempora consequatur. - created_at: "1996-02-29T20:17:00Z" - finish_reason: Inventore accusamus accusamus aut repudiandae. - id: Qui est repudiandae sint placeat sed explicabo. - model: Omnis laudantium distinctio qui. - role: Esse perspiciatis totam iure. - tool_call_id: Earum culpa rem et nulla. - tool_calls: Autem ut in repellendus cupiditate. - user_id: Facere minus ratione qui. - - content: Totam voluptatem tempora consequatur. - created_at: "1996-02-29T20:17:00Z" - finish_reason: Inventore accusamus accusamus aut repudiandae. - id: Qui est repudiandae sint placeat sed explicabo. - model: Omnis laudantium distinctio qui. - role: Esse perspiciatis totam iure. - tool_call_id: Earum culpa rem et nulla. - tool_calls: Autem ut in repellendus cupiditate. - user_id: Facere minus ratione qui. + - content: Eligendi ea aliquam sunt non. + created_at: "2002-12-25T11:34:16Z" + finish_reason: Minima voluptatibus ut nobis impedit. + id: Ipsum voluptas quia. + model: Maxime similique nobis hic sed fugit cum. + role: Eaque quam. + tool_call_id: Laborum eum nemo quisquam. + tool_calls: Qui dicta et a quia. + user_id: Similique aliquid itaque eos placeat. + - content: Eligendi ea aliquam sunt non. + created_at: "2002-12-25T11:34:16Z" + finish_reason: Minima voluptatibus ut nobis impedit. + id: Ipsum voluptas quia. + model: Maxime similique nobis hic sed fugit cum. + role: Eaque quam. + tool_call_id: Laborum eum nemo quisquam. + tool_calls: Qui dicta et a quia. + user_id: Similique aliquid itaque eos placeat. + - content: Eligendi ea aliquam sunt non. + created_at: "2002-12-25T11:34:16Z" + finish_reason: Minima voluptatibus ut nobis impedit. + id: Ipsum voluptas quia. + model: Maxime similique nobis hic sed fugit cum. + role: Eaque quam. + tool_call_id: Laborum eum nemo quisquam. + tool_calls: Qui dicta et a quia. + user_id: Similique aliquid itaque eos placeat. num_messages: type: integer description: The number of messages in the chat - example: 7717714649945354497 + example: 5070163592694380603 format: int64 title: type: string description: The title of the chat - example: A dicta corporis doloremque. + example: Magni optio labore sed neque. updated_at: type: string description: When the chat was last updated. - example: "2007-03-02T09:00:29Z" + example: "2005-12-10T04:04:54Z" format: date-time user_id: type: string description: The ID of the user who created the chat - example: Provident est aut. + example: Eius rerum at. example: - created_at: "1994-12-18T11:41:09Z" - id: Tenetur eaque quisquam id veritatis. + created_at: "2004-05-28T07:31:36Z" + id: Eius vel soluta sed perferendis cum sequi. messages: - - content: Totam voluptatem tempora consequatur. - created_at: "1996-02-29T20:17:00Z" - finish_reason: Inventore accusamus accusamus aut repudiandae. - id: Qui est repudiandae sint placeat sed explicabo. - model: Omnis laudantium distinctio qui. - role: Esse perspiciatis totam iure. - tool_call_id: Earum culpa rem et nulla. - tool_calls: Autem ut in repellendus cupiditate. - user_id: Facere minus ratione qui. - - content: Totam voluptatem tempora consequatur. - created_at: "1996-02-29T20:17:00Z" - finish_reason: Inventore accusamus accusamus aut repudiandae. - id: Qui est repudiandae sint placeat sed explicabo. - model: Omnis laudantium distinctio qui. - role: Esse perspiciatis totam iure. - tool_call_id: Earum culpa rem et nulla. - tool_calls: Autem ut in repellendus cupiditate. - user_id: Facere minus ratione qui. - - content: Totam voluptatem tempora consequatur. - created_at: "1996-02-29T20:17:00Z" - finish_reason: Inventore accusamus accusamus aut repudiandae. - id: Qui est repudiandae sint placeat sed explicabo. - model: Omnis laudantium distinctio qui. - role: Esse perspiciatis totam iure. - tool_call_id: Earum culpa rem et nulla. - tool_calls: Autem ut in repellendus cupiditate. - user_id: Facere minus ratione qui. - num_messages: 442840667567963292 - title: Suscipit modi accusamus sint et autem. - updated_at: "2008-02-26T10:12:34Z" - user_id: Voluptates est consequatur. + - content: Eligendi ea aliquam sunt non. + created_at: "2002-12-25T11:34:16Z" + finish_reason: Minima voluptatibus ut nobis impedit. + id: Ipsum voluptas quia. + model: Maxime similique nobis hic sed fugit cum. + role: Eaque quam. + tool_call_id: Laborum eum nemo quisquam. + tool_calls: Qui dicta et a quia. + user_id: Similique aliquid itaque eos placeat. + - content: Eligendi ea aliquam sunt non. + created_at: "2002-12-25T11:34:16Z" + finish_reason: Minima voluptatibus ut nobis impedit. + id: Ipsum voluptas quia. + model: Maxime similique nobis hic sed fugit cum. + role: Eaque quam. + tool_call_id: Laborum eum nemo quisquam. + tool_calls: Qui dicta et a quia. + user_id: Similique aliquid itaque eos placeat. + - content: Eligendi ea aliquam sunt non. + created_at: "2002-12-25T11:34:16Z" + finish_reason: Minima voluptatibus ut nobis impedit. + id: Ipsum voluptas quia. + model: Maxime similique nobis hic sed fugit cum. + role: Eaque quam. + tool_call_id: Laborum eum nemo quisquam. + tool_calls: Qui dicta et a quia. + user_id: Similique aliquid itaque eos placeat. + - content: Eligendi ea aliquam sunt non. + created_at: "2002-12-25T11:34:16Z" + finish_reason: Minima voluptatibus ut nobis impedit. + id: Ipsum voluptas quia. + model: Maxime similique nobis hic sed fugit cum. + role: Eaque quam. + tool_call_id: Laborum eum nemo quisquam. + tool_calls: Qui dicta et a quia. + user_id: Similique aliquid itaque eos placeat. + num_messages: 4905685832288200109 + title: Quia quia occaecati voluptatem eveniet sit excepturi. + updated_at: "2005-04-10T06:13:54Z" + user_id: Vel hic et adipisci. required: - messages - id @@ -11624,7 +11694,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11647,11 +11717,11 @@ definitions: example: false description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -11667,7 +11737,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11683,19 +11753,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -11710,7 +11780,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11726,7 +11796,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -11773,15 +11843,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -11796,7 +11866,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11812,19 +11882,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -11839,7 +11909,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11855,7 +11925,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -11867,7 +11937,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -11898,19 +11968,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -11925,16 +11995,16 @@ definitions: credits_used: type: number description: The number of credits remaining - example: 0.8163641879722497 + example: 0.14576436648282662 format: double monthly_credits: type: integer description: The number of monthly credits - example: 7158061307201392704 + example: 8282333598583333051 format: int64 example: - credits_used: 0.3591808659368909 - monthly_credits: 3797200189620140708 + credits_used: 0.4792198243955732 + monthly_credits: 8081525388741486412 required: - credits_used - monthly_credits @@ -11945,7 +12015,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11961,7 +12031,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -11973,7 +12043,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -12008,14 +12078,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -12047,18 +12117,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -12094,7 +12164,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false @@ -12102,7 +12172,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -12117,7 +12187,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12137,10 +12207,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -12180,15 +12250,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -12219,14 +12289,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -12246,7 +12316,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12262,11 +12332,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: fault: false @@ -12274,7 +12344,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -12305,18 +12375,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -12352,15 +12422,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -12391,7 +12461,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -12402,7 +12472,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -12434,18 +12504,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -12461,7 +12531,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12477,19 +12547,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -12504,7 +12574,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12520,19 +12590,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -12567,14 +12637,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -12606,7 +12676,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -12618,7 +12688,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -12633,7 +12703,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12653,7 +12723,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: false @@ -12676,7 +12746,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12692,7 +12762,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -12703,7 +12773,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -12719,7 +12789,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12735,7 +12805,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -12778,14 +12848,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -12805,7 +12875,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12825,15 +12895,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -12864,11 +12934,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false @@ -12911,15 +12981,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -12934,50 +13004,50 @@ definitions: content: type: string description: The content of the message - example: Ea cupiditate. + example: Molestiae voluptatem consequuntur. created_at: type: string description: When the message was created. - example: "1988-11-30T19:38:49Z" + example: "1990-02-23T04:32:35Z" format: date-time finish_reason: type: string description: The finish reason of the message - example: Aliquid praesentium voluptatibus. + example: Repellendus quis veniam voluptatem sed nisi nostrum. id: type: string description: The ID of the message - example: Inventore sint. + example: Veniam facilis omnis libero. model: type: string description: The model that generated the message - example: Quibusdam quae reiciendis. + example: Et quibusdam aut iusto culpa porro aspernatur. role: type: string description: The role of the message - example: Est et cum quo. + example: Praesentium voluptatibus. tool_call_id: type: string description: The tool call ID of the message - example: Adipisci debitis animi alias vero voluptas velit. + example: Laborum impedit aut accusantium dolore molestiae porro. tool_calls: type: string description: The tool calls in the message as a JSON blob - example: Qui voluptatem at veniam facilis omnis. + example: Rerum sed aspernatur molestiae enim magnam. user_id: type: string description: The ID of the user who created the message - example: Molestiae voluptatem consequuntur. + example: Assumenda sit expedita veniam dolores amet. example: - content: Sit voluptatem. - created_at: "2007-04-01T02:04:38Z" - finish_reason: Esse aut. - id: Et nulla et beatae sapiente similique est. - model: Sunt excepturi minima. - role: Quod ratione quia est est architecto qui. - tool_call_id: Est sit eligendi. - tool_calls: Accusantium doloribus. - user_id: Quae aut et aspernatur eos. + content: Reprehenderit dolore ut ipsam voluptates est. + created_at: "1997-04-01T16:47:00Z" + finish_reason: Ab molestiae repudiandae ad doloribus incidunt. + id: Eos et ut sint eum. + model: Aliquid vel unde dolores autem qui consequatur. + role: Praesentium vel autem distinctio tenetur. + tool_call_id: Placeat neque maiores dolore vitae. + tool_calls: Qui odio alias quae non. + user_id: Veritatis repellat quia fuga impedit saepe. required: - id - role @@ -12990,37 +13060,37 @@ definitions: created_at: type: string description: When the chat was created. - example: "1975-04-21T00:13:16Z" + example: "1974-05-11T20:47:27Z" format: date-time id: type: string description: The ID of the chat - example: Dolore maxime. + example: Dolor consectetur occaecati excepturi eligendi impedit. num_messages: type: integer description: The number of messages in the chat - example: 5761080014681028109 + example: 251066692278777839 format: int64 title: type: string description: The title of the chat - example: Nihil ut est velit unde rem. + example: Eum est quisquam. updated_at: type: string description: When the chat was last updated. - example: "1989-09-03T22:09:16Z" + example: "1985-12-30T08:32:18Z" format: date-time user_id: type: string description: The ID of the user who created the chat - example: Est minus quibusdam enim atque quia. + example: Iure corrupti officiis autem aperiam optio. example: - created_at: "1990-04-11T15:17:41Z" - id: Deserunt sunt quae rem. - num_messages: 1940512381498388788 - title: Qui animi ut quo. - updated_at: "2007-02-02T20:26:32Z" - user_id: Enim nihil nesciunt. + created_at: "1995-08-07T22:48:22Z" + id: Optio ab rerum quos. + num_messages: 1170969373511842788 + title: Et eos ut in temporibus sunt. + updated_at: "2011-07-07T23:43:10Z" + user_id: Numquam ut esse non cum. required: - id - title @@ -13043,23 +13113,23 @@ definitions: $ref: '#/definitions/Package' example: package: - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. required: - package CreateProjectResult: @@ -13070,13 +13140,13 @@ definitions: $ref: '#/definitions/Project' example: project: - created_at: "2000-03-03T01:19:45Z" - id: Natus sit porro dolor vitae. - logo_asset_id: Fugit nesciunt saepe enim rem saepe eos. - name: Qui dolores accusantium soluta qui. - organization_id: Ex dolorem laboriosam iusto. - slug: yvl - updated_at: "2004-08-29T03:31:46Z" + created_at: "1982-08-15T21:58:36Z" + id: Ut ipsa accusantium corrupti dolores nemo nesciunt. + logo_asset_id: Omnis omnis sunt nesciunt impedit atque. + name: Voluptatem incidunt pariatur omnis illum et officiis. + organization_id: Qui velit eligendi tempora quis culpa molestiae. + slug: j9a + updated_at: "1972-05-21T05:31:53Z" required: - project CreatePromptTemplateResult: @@ -13088,53 +13158,54 @@ definitions: example: template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - template CustomDomain: @@ -13144,46 +13215,46 @@ definitions: activated: type: boolean description: Whether the domain is activated in ingress - example: false + example: true created_at: type: string description: When the custom domain was created. - example: "1998-11-30T04:11:37Z" + example: "2005-01-22T07:09:39Z" format: date-time domain: type: string description: The custom domain name - example: Molestiae tenetur ea. + example: Repudiandae exercitationem sapiente molestias. id: type: string description: The ID of the custom domain - example: Expedita voluptates. + example: Maxime eveniet rerum sed voluptatum. is_updating: type: boolean description: The custom domain is actively being registered - example: false + example: true organization_id: type: string description: The ID of the organization this domain belongs to - example: Possimus autem quis aliquid. + example: Ut est. updated_at: type: string description: When the custom domain was last updated. - example: "2015-02-18T16:04:56Z" + example: "2009-01-08T16:28:35Z" format: date-time verified: type: boolean description: Whether the domain is verified - example: false + example: true example: activated: true - created_at: "1981-07-05T08:21:43Z" - domain: Amet quaerat quis. - id: Deleniti aliquid omnis labore necessitatibus libero. - is_updating: false - organization_id: Est quibusdam illo quidem molestias. - updated_at: "2002-04-01T09:32:24Z" - verified: false + created_at: "1988-04-13T21:36:45Z" + domain: Consectetur numquam doloribus atque dolore illum. + id: At minima. + is_updating: true + organization_id: At esse autem. + updated_at: "1995-01-30T18:33:01Z" + verified: true required: - id - organization_id @@ -13200,9 +13271,9 @@ definitions: variation_id: type: string description: The ID of the variation that was deleted - example: Et ut omnis sunt. + example: Fuga delectus illo odit iure. example: - variation_id: Incidunt fugiat quos necessitatibus tempore. + variation_id: Reprehenderit molestiae. required: - variation_id Deployment: @@ -13216,7 +13287,7 @@ definitions: created_at: type: string description: The creation date of the deployment. - example: "2009-01-15T05:24:59Z" + example: "1972-03-14T06:52:00Z" format: date-time external_id: type: string @@ -13225,27 +13296,32 @@ definitions: external_url: type: string description: The upstream URL a deployment can refer to. This can be a github url to a commit hash or pull request. - example: Dolorem iusto commodi qui recusandae. + example: Dolorem esse temporibus ea neque in nihil. functions_assets: type: array items: $ref: '#/definitions/DeploymentFunctions' description: The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions. example: - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm functions_tool_count: type: integer description: The number of tools in the deployment generated from OpenAPI documents. - example: 5255818368767570465 + example: 3320374569914302979 format: int64 github_pr: type: string @@ -13273,120 +13349,104 @@ definitions: $ref: '#/definitions/OpenAPIv3DeploymentAsset' description: The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions. example: - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 openapiv3_tool_count: type: integer description: The number of tools in the deployment generated from OpenAPI documents. - example: 6921341189797627344 + example: 7338445823993316849 format: int64 organization_id: type: string description: The ID of the organization that the deployment belongs to. - example: Itaque in. + example: Ea ipsa. packages: type: array items: $ref: '#/definitions/DeploymentPackage' description: The packages that were deployed. example: - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. project_id: type: string description: The ID of the project that the deployment belongs to. - example: Molestias possimus. + example: Animi ad quae totam. status: type: string description: The status of the deployment. - example: Occaecati laborum eius vel. + example: Qui qui vitae amet rem. user_id: type: string description: The ID of the user that created the deployment. - example: Deserunt dolor odio ut. + example: Quis dolores inventore non. example: cloned_from: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - created_at: "1995-07-16T15:39:56Z" + created_at: "1977-01-14T23:39:21Z" external_id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - external_url: Et recusandae. + external_url: Tenetur neque vitae ipsam nisi. functions_assets: - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - functions_tool_count: 5367031416102269518 + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm + functions_tool_count: 8543955642656211498 github_pr: "1234" github_repo: speakeasyapi/gram github_sha: f33e693e9e12552043bc0ec5c37f1b8a9e076161 id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 idempotency_key: 01jqq0ajmb4qh9eppz48dejr2m openapiv3_assets: - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - openapiv3_tool_count: 631479222991227360 - organization_id: Quidem minima enim. + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + openapiv3_tool_count: 3944793998878884637 + organization_id: Debitis aut quibusdam facilis. packages: - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - project_id: Voluptatum et recusandae dolor rerum. - status: Rem corrupti et iste ex quia unde. - user_id: Qui deserunt ullam itaque molestiae et in. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + project_id: Adipisci in. + status: Et tenetur vero recusandae ducimus eum. + user_id: Temporibus sint molestiae quo dicta atque. required: - id - created_at @@ -13405,31 +13465,31 @@ definitions: asset_id: type: string description: The ID of the uploaded asset. - example: Esse cumque qui. + example: Est asperiores optio rem quae. id: type: string description: The ID of the deployment asset. - example: Aut consequuntur voluptatum quo molestiae quos vel. + example: Dolorem unde maxime. name: type: string description: The name to give the document as it will be displayed in UIs. - example: Facere ipsum architecto consectetur. + example: Delectus quam qui laborum dolor. runtime: type: string description: The runtime to use when executing functions. - example: Consectetur tenetur adipisci voluptas aut maiores et. + example: Voluptatem magni repellendus nostrum vitae. slug: type: string description: The slug to give the document as it will be displayed in URLs. - example: ykq + example: caz pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 example: - asset_id: Officia atque aut consequatur eos est. - id: Voluptatum veritatis. - name: Exercitationem omnis nihil rerum maxime. - runtime: Consequuntur eligendi dolorem unde maxime nesciunt. - slug: dak + asset_id: Et non perspiciatis quasi qui. + id: Dolorum repellat dolores dolores. + name: Perferendis temporibus veniam. + runtime: Qui odio eum. + slug: n25 required: - id - asset_id @@ -13443,34 +13503,34 @@ definitions: attachment_id: type: string description: The ID of the asset tied to the log event - example: Dolorum accusamus. + example: Voluptatibus magnam sint occaecati quo aut. attachment_type: type: string description: The type of the asset tied to the log event - example: Et perferendis debitis aut quia sit et. + example: Cumque minus modi repellat voluptas. created_at: type: string description: The creation date of the log event - example: Harum sequi non. + example: Nesciunt aspernatur qui sit facilis officiis. event: type: string description: The type of event that occurred - example: Corrupti rem voluptatem illum numquam autem rem. + example: Voluptates aut enim ducimus et est dolor. id: type: string description: The ID of the log event - example: Ab tempore at sed. + example: Cum quisquam facere. message: type: string description: The message of the log event - example: Rerum temporibus deleniti voluptatem dolor beatae enim. + example: Placeat aliquid voluptas ducimus qui ullam voluptates. example: - attachment_id: Quisquam facere. - attachment_type: Voluptatibus magnam sint occaecati quo aut. - created_at: Cumque minus modi repellat voluptas. - event: Nesciunt aspernatur qui sit facilis officiis. - id: Laudantium pariatur esse consequatur et. - message: Voluptates aut enim ducimus et est dolor. + attachment_id: Quos nam. + attachment_type: Reiciendis animi numquam iste ad commodi deserunt. + created_at: Vitae facere. + event: Id recusandae. + id: Incidunt ea accusamus et. + message: Voluptatem pariatur. required: - id - created_at @@ -13483,19 +13543,19 @@ definitions: id: type: string description: The ID of the deployment package. - example: Optio rem quae. + example: Suscipit alias. name: type: string description: The name of the package. - example: Delectus quam qui laborum dolor. + example: Nulla consequuntur optio deleniti nihil perspiciatis. version: type: string description: The version of the package. - example: Rem repudiandae commodi iusto. + example: Rem quas. example: - id: Magni repellendus nostrum vitae laborum dolorum repellat. - name: Dolores velit. - version: Non perspiciatis quasi qui rerum. + id: Esse dicta architecto omnis voluptatibus. + name: Voluptas voluptatem explicabo aut repellendus accusamus ut. + version: Perferendis repudiandae illum rerum iusto fugiat. required: - id - name @@ -13507,17 +13567,17 @@ definitions: created_at: type: string description: The creation date of the deployment. - example: "1981-03-29T12:08:55Z" + example: "1991-06-26T16:06:56Z" format: date-time functions_asset_count: type: integer description: The number of Functions assets. - example: 5071092922558999829 + example: 4068059451335937714 format: int64 functions_tool_count: type: integer description: The number of tools in the deployment generated from Functions. - example: 9205605408623340076 + example: 9138885583237034912 format: int64 id: type: string @@ -13526,30 +13586,30 @@ definitions: openapiv3_asset_count: type: integer description: The number of upstream OpenAPI assets. - example: 5297076832404377726 + example: 6834946037220952121 format: int64 openapiv3_tool_count: type: integer description: The number of tools in the deployment generated from OpenAPI documents. - example: 4944169476834958170 + example: 6241592695586659796 format: int64 status: type: string description: The status of the deployment. - example: Nam in accusantium voluptas aut vitae. + example: Quia mollitia voluptates sequi beatae dolor. user_id: type: string description: The ID of the user that created the deployment. - example: Qui minus voluptatibus quo consequatur sed. + example: Voluptatum a aspernatur quo incidunt animi. example: - created_at: "1989-05-26T03:00:41Z" - functions_asset_count: 7052991497509996693 - functions_tool_count: 3070928126613896762 + created_at: "1995-11-09T12:58:53Z" + functions_asset_count: 4546625189441281592 + functions_tool_count: 5840168869196590621 id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - openapiv3_asset_count: 3806462229495250235 - openapiv3_tool_count: 6121353899794157665 - status: Aliquid dolorum non vel minus. - user_id: Et est. + openapiv3_asset_count: 8136432753919795854 + openapiv3_tool_count: 4101369320509725805 + status: Autem nam. + user_id: Cupiditate cumque debitis asperiores et. required: - id - created_at @@ -13566,7 +13626,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -13586,15 +13646,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -13609,7 +13669,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -13637,7 +13697,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -13711,7 +13771,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -13758,7 +13818,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: fault: true @@ -13766,7 +13826,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -13781,7 +13841,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -13804,12 +13864,12 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -13840,14 +13900,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -13871,24 +13931,28 @@ definitions: external_url: type: string description: The upstream URL a deployment can refer to. This can be a github url to a commit hash or pull request. - example: Modi excepturi molestiae accusantium. + example: Molestiae molestias voluptatibus. functions: type: array items: $ref: '#/definitions/AddFunctionsForm' example: - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj github_pr: type: string description: The github pull request that resulted in the deployment. @@ -13906,63 +13970,58 @@ definitions: items: $ref: '#/definitions/AddOpenAPIv3DeploymentAssetForm' example: - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy packages: type: array items: $ref: '#/definitions/AddDeploymentPackageForm' example: - - name: Debitis suscipit ipsa quo dolorem enim necessitatibus. - version: Recusandae recusandae. - - name: Debitis suscipit ipsa quo dolorem enim necessitatibus. - version: Recusandae recusandae. - - name: Debitis suscipit ipsa quo dolorem enim necessitatibus. - version: Recusandae recusandae. + - name: Incidunt natus exercitationem est. + version: Non odit laudantium eligendi quia sed. + - name: Incidunt natus exercitationem est. + version: Non odit laudantium eligendi quia sed. + - name: Incidunt natus exercitationem est. + version: Non odit laudantium eligendi quia sed. + - name: Incidunt natus exercitationem est. + version: Non odit laudantium eligendi quia sed. example: external_id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - external_url: Optio aut sed. + external_url: Fugiat consectetur temporibus animi quidem in. functions: - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj github_pr: "1234" github_repo: speakeasyapi/gram github_sha: f33e693e9e12552043bc0ec5c37f1b8a9e076161 openapiv3_assets: - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy packages: - - name: Debitis suscipit ipsa quo dolorem enim necessitatibus. - version: Recusandae recusandae. - - name: Debitis suscipit ipsa quo dolorem enim necessitatibus. - version: Recusandae recusandae. + - name: Incidunt natus exercitationem est. + version: Non odit laudantium eligendi quia sed. + - name: Incidunt natus exercitationem est. + version: Non odit laudantium eligendi quia sed. DeploymentsCreateDeploymentUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -13993,12 +14052,12 @@ definitions: example: false description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -14013,7 +14072,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -14029,19 +14088,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -14083,8 +14142,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -14099,7 +14158,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -14115,11 +14174,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false @@ -14127,7 +14186,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -14158,7 +14217,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -14205,7 +14264,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: fault: false @@ -14213,7 +14272,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -14228,7 +14287,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -14271,7 +14330,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -14291,14 +14350,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -14337,11 +14396,11 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -14377,14 +14436,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -14400,118 +14459,127 @@ definitions: deployment_id: type: string description: The ID of the deployment to evolve. If omitted, the latest deployment will be used. - example: Quia vel ea qui eum numquam. + example: Totam omnis recusandae. exclude_functions: type: array items: type: string - example: Illo adipisci tempora ea voluptas. + example: Et nostrum. description: The functions, identified by slug, to exclude from the new deployment when cloning a previous deployment. example: - - Qui ducimus error. - - Fugit ducimus et eum. + - Fugit quaerat ea. + - Totam recusandae. exclude_openapiv3_assets: type: array items: type: string - example: Soluta magnam praesentium voluptatum. + example: Laboriosam placeat illo adipisci tempora ea. description: The OpenAPI 3.x documents, identified by slug, to exclude from the new deployment when cloning a previous deployment. example: - - Dolor voluptas. - - Voluptas totam omnis recusandae. - - Consequatur eum. + - Et qui ducimus error repellat fugit ducimus. + - Eum aut assumenda. + - Omnis ut dolores et impedit omnis. + - Dolorem et dolorum. exclude_packages: type: array items: type: string - example: Sit dolorem et. + example: Quisquam quo. description: The packages to exclude from the new deployment when cloning a previous deployment. example: - - Iure tempora. - - Quisquam dolores est dolores odit dolor corrupti. - - Ipsa laboriosam. + - Voluptatum aut sit. + - Repudiandae fugit est sed sunt voluptates non. upsert_functions: type: array items: $ref: '#/definitions/AddFunctionsForm' description: The tool functions to upsert in the new deployment. example: - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj upsert_openapiv3_assets: type: array items: $ref: '#/definitions/AddOpenAPIv3DeploymentAssetForm' description: The OpenAPI 3.x documents to upsert in the new deployment. example: - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy upsert_packages: type: array items: $ref: '#/definitions/AddPackageForm' description: The packages to upsert in the new deployment. example: - - name: Qui voluptatem sint. - version: Quisquam minus dolore consequuntur eum necessitatibus. - - name: Qui voluptatem sint. - version: Quisquam minus dolore consequuntur eum necessitatibus. - example: - deployment_id: Assumenda dolorem omnis ut. + - name: Molestiae maiores voluptatem. + version: Cum vel aliquid rerum at repellendus est. + - name: Molestiae maiores voluptatem. + version: Cum vel aliquid rerum at repellendus est. + - name: Molestiae maiores voluptatem. + version: Cum vel aliquid rerum at repellendus est. + - name: Molestiae maiores voluptatem. + version: Cum vel aliquid rerum at repellendus est. + example: + deployment_id: Mollitia reiciendis ut sed quos est. exclude_functions: - - Quos est omnis tenetur et similique est. - - Soluta a molestiae eligendi labore incidunt architecto. - - Eveniet aspernatur et rerum sunt. + - Est doloremque natus earum cupiditate. + - Quis atque molestias. exclude_openapiv3_assets: - - Dolorem et dolorum. - - Quisquam quo. - - Recusandae voluptatum aut sit sed repudiandae. + - Maiores soluta a molestiae eligendi. + - Incidunt architecto cumque eveniet aspernatur et rerum. exclude_packages: - - Sed sunt voluptates non vero et nostrum. - - Velit fugit quaerat ea repellendus. - - Recusandae officiis mollitia reiciendis. + - Quam aut enim animi ut. + - Laborum dolor quia quis quasi nisi qui. + - Assumenda in qui animi ducimus dolorem sint. + - Labore atque sint libero. upsert_functions: - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 - - asset_id: Sed itaque ad. - name: Dolores doloremque nobis. - runtime: Laboriosam vel omnis. - slug: oo3 + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj + - asset_id: Quo dolorem enim necessitatibus ducimus recusandae. + name: Odio omnis praesentium. + runtime: Asperiores necessitatibus accusamus repudiandae iste non. + slug: hmj upsert_openapiv3_assets: - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv - - asset_id: Veniam explicabo et est aut cumque alias. - name: Et blanditiis et. - slug: cvv + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy + - asset_id: Nobis blanditiis omnis. + name: Cumque qui laboriosam vel. + slug: ycy upsert_packages: - - name: Qui voluptatem sint. - version: Quisquam minus dolore consequuntur eum necessitatibus. - - name: Qui voluptatem sint. - version: Quisquam minus dolore consequuntur eum necessitatibus. + - name: Molestiae maiores voluptatem. + version: Cum vel aliquid rerum at repellendus est. + - name: Molestiae maiores voluptatem. + version: Cum vel aliquid rerum at repellendus est. + - name: Molestiae maiores voluptatem. + version: Cum vel aliquid rerum at repellendus est. + - name: Molestiae maiores voluptatem. + version: Cum vel aliquid rerum at repellendus est. DeploymentsEvolveUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -14519,7 +14587,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -14539,10 +14607,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -14562,7 +14630,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -14578,7 +14646,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -14628,11 +14696,11 @@ definitions: example: true description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -14648,7 +14716,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -14668,14 +14736,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -14707,18 +14775,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -14734,50 +14802,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: permission denied (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - DeploymentsGetActiveDeploymentGatewayErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -14798,50 +14823,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - DeploymentsGetActiveDeploymentInvalidResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: request contains one or more invalidation fields (default view) + description: permission denied (default view) example: fault: false id: 123abc @@ -14856,14 +14838,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetActiveDeploymentInvariantViolationResponseBody: + DeploymentsGetActiveDeploymentGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -14885,56 +14867,13 @@ definitions: description: Is the error a timeout? example: false description: an unexpected error occurred (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - DeploymentsGetActiveDeploymentNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: resource not found (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -14942,7 +14881,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetActiveDeploymentUnauthorizedResponseBody: + DeploymentsGetActiveDeploymentInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -14965,12 +14904,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (default view) + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc @@ -14985,14 +14924,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetActiveDeploymentUnexpectedResponseBody: + DeploymentsGetActiveDeploymentInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -15008,7 +14947,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -15019,49 +14958,6 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - DeploymentsGetActiveDeploymentUnsupportedMediaResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: unsupported media type (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request temporary: false timeout: true required: @@ -15071,7 +14967,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentBadRequestResponseBody: + DeploymentsGetActiveDeploymentNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15099,13 +14995,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: request is invalid (default view) + description: resource not found (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -15114,14 +15010,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentConflictResponseBody: + DeploymentsGetActiveDeploymentUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -15142,13 +15038,13 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: resource already exists (default view) + description: unauthorized access (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -15157,7 +15053,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentForbiddenResponseBody: + DeploymentsGetActiveDeploymentUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15185,56 +15081,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - DeploymentsGetDeploymentGatewayErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -15243,7 +15096,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentInvalidResponseBody: + DeploymentsGetActiveDeploymentUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15266,12 +15119,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: request contains one or more invalidation fields (default view) + description: unsupported media type (default view) example: fault: false id: 123abc @@ -15286,7 +15139,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentInvariantViolationResponseBody: + DeploymentsGetDeploymentBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15314,14 +15167,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -15329,14 +15182,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsBadRequestResponseBody: + DeploymentsGetDeploymentConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -15357,14 +15210,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: request is invalid (default view) + description: resource already exists (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -15372,14 +15225,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsConflictResponseBody: + DeploymentsGetDeploymentForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -15395,18 +15248,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) + description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -15415,7 +15268,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsForbiddenResponseBody: + DeploymentsGetDeploymentGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15443,13 +15296,13 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: permission denied (default view) + description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -15458,7 +15311,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsGatewayErrorResponseBody: + DeploymentsGetDeploymentInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15481,19 +15334,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + example: false + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -15501,7 +15354,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsInvalidResponseBody: + DeploymentsGetDeploymentInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15529,7 +15382,7 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: request contains one or more invalidation fields (default view) + description: an unexpected error occurred (default view) example: fault: true id: 123abc @@ -15544,7 +15397,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsInvariantViolationResponseBody: + DeploymentsGetDeploymentLogsBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15572,56 +15425,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: request is invalid (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - DeploymentsGetDeploymentLogsNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: resource not found (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true timeout: true required: - name @@ -15630,7 +15440,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsUnauthorizedResponseBody: + DeploymentsGetDeploymentLogsConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15657,14 +15467,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: unauthorized access (default view) + example: false + description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -15673,7 +15483,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsUnexpectedResponseBody: + DeploymentsGetDeploymentLogsForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15701,14 +15511,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: permission denied (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -15716,7 +15526,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsUnsupportedMediaResponseBody: + DeploymentsGetDeploymentLogsGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15739,19 +15549,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: unsupported media type (default view) + example: true + description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -15759,14 +15569,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentNotFoundResponseBody: + DeploymentsGetDeploymentLogsInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -15782,18 +15592,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: resource not found (default view) + example: false + description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -15802,7 +15612,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentUnauthorizedResponseBody: + DeploymentsGetDeploymentLogsInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15825,18 +15635,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: unauthorized access (default view) + example: false + description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -15845,7 +15655,93 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentUnexpectedResponseBody: + DeploymentsGetDeploymentLogsNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: resource not found (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + DeploymentsGetDeploymentLogsUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: unauthorized access (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + DeploymentsGetDeploymentLogsUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15888,14 +15784,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentUnsupportedMediaResponseBody: + DeploymentsGetDeploymentLogsUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -15911,14 +15807,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -15931,14 +15827,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentBadRequestResponseBody: + DeploymentsGetDeploymentNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -15958,8 +15854,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (default view) + example: true + description: resource not found (default view) example: fault: false id: 123abc @@ -15974,7 +15870,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentConflictResponseBody: + DeploymentsGetDeploymentUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16001,15 +15897,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource already exists (default view) + example: false + description: unauthorized access (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -16017,14 +15913,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentForbiddenResponseBody: + DeploymentsGetDeploymentUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16045,9 +15941,9 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: permission denied (default view) + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -16060,7 +15956,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentGatewayErrorResponseBody: + DeploymentsGetDeploymentUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16088,7 +15984,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: unsupported media type (default view) example: fault: true id: 123abc @@ -16103,7 +15999,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentInvalidResponseBody: + DeploymentsGetLatestDeploymentBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16131,14 +16027,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: request contains one or more invalidation fields (default view) + description: request is invalid (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -16146,7 +16042,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentInvariantViolationResponseBody: + DeploymentsGetLatestDeploymentConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16173,15 +16069,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + example: true + description: resource already exists (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -16189,7 +16085,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentNotFoundResponseBody: + DeploymentsGetLatestDeploymentForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16216,15 +16112,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource not found (default view) + example: true + description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -16232,7 +16128,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentUnauthorizedResponseBody: + DeploymentsGetLatestDeploymentGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16260,13 +16156,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (default view) + description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -16275,14 +16171,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentUnexpectedResponseBody: + DeploymentsGetLatestDeploymentInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16298,12 +16194,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + example: true + description: request contains one or more invalidation fields (default view) example: fault: false id: 123abc @@ -16318,14 +16214,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetLatestDeploymentUnsupportedMediaResponseBody: + DeploymentsGetLatestDeploymentInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16341,19 +16237,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: unsupported media type (default view) + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -16361,7 +16257,7 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsBadRequestResponseBody: + DeploymentsGetLatestDeploymentNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16388,10 +16284,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (default view) + example: true + description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -16404,14 +16300,14 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsConflictResponseBody: + DeploymentsGetLatestDeploymentUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16432,13 +16328,13 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: resource already exists (default view) + description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -16447,14 +16343,14 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsForbiddenResponseBody: + DeploymentsGetLatestDeploymentUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16474,8 +16370,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: permission denied (default view) + example: false + description: an unexpected error occurred (default view) example: fault: false id: 123abc @@ -16490,7 +16386,7 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsGatewayErrorResponseBody: + DeploymentsGetLatestDeploymentUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16518,7 +16414,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: unsupported media type (default view) example: fault: true id: 123abc @@ -16533,14 +16429,14 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsInvalidResponseBody: + DeploymentsListDeploymentsBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16561,14 +16457,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: request contains one or more invalidation fields (default view) + description: request is invalid (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -16576,7 +16472,7 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsInvariantViolationResponseBody: + DeploymentsListDeploymentsConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16599,19 +16495,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -16619,14 +16515,14 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsNotFoundResponseBody: + DeploymentsListDeploymentsForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16642,18 +16538,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: resource not found (default view) + description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -16662,14 +16558,14 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsUnauthorizedResponseBody: + DeploymentsListDeploymentsGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16689,15 +16585,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (default view) + example: true + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -16705,7 +16601,7 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsUnexpectedResponseBody: + DeploymentsListDeploymentsInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16728,19 +16624,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -16748,14 +16644,14 @@ definitions: - temporary - timeout - fault - DeploymentsListDeploymentsUnsupportedMediaResponseBody: + DeploymentsListDeploymentsInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16771,19 +16667,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: unsupported media type (default view) + example: false + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -16791,7 +16687,7 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployBadRequestResponseBody: + DeploymentsListDeploymentsNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16814,19 +16710,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: request is invalid (default view) + example: false + description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -16834,14 +16730,14 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployConflictResponseBody: + DeploymentsListDeploymentsUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16857,19 +16753,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: resource already exists (default view) + example: false + description: unauthorized access (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -16877,14 +16773,14 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployForbiddenResponseBody: + DeploymentsListDeploymentsUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16905,13 +16801,13 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: permission denied (default view) + description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -16920,7 +16816,7 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployGatewayErrorResponseBody: + DeploymentsListDeploymentsUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -16943,14 +16839,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -16963,14 +16859,14 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployInvalidResponseBody: + DeploymentsRedeployBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -16986,19 +16882,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: request contains one or more invalidation fields (default view) + example: false + description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -17006,14 +16902,14 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployInvariantViolationResponseBody: + DeploymentsRedeployConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17029,19 +16925,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + example: true + description: resource already exists (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -17049,14 +16945,14 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployNotFoundResponseBody: + DeploymentsRedeployForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17077,14 +16973,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: resource not found (default view) + description: permission denied (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -17092,19 +16988,7 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployRequestBody: - title: DeploymentsRedeployRequestBody - type: object - properties: - deployment_id: - type: string - description: The ID of the deployment to redeploy. - example: Provident assumenda id dignissimos. - example: - deployment_id: Ratione molestias minima. - required: - - deployment_id - DeploymentsRedeployUnauthorizedResponseBody: + DeploymentsRedeployGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17131,15 +17015,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (default view) + example: true + description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -17147,7 +17031,7 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployUnexpectedResponseBody: + DeploymentsRedeployInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17170,19 +17054,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + example: false + description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -17190,14 +17074,14 @@ definitions: - temporary - timeout - fault - DeploymentsRedeployUnsupportedMediaResponseBody: + DeploymentsRedeployInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17213,14 +17097,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: unsupported media type (default view) + example: true + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -17233,14 +17117,14 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainBadRequestResponseBody: + DeploymentsRedeployNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17260,14 +17144,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (default view) + example: true + description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -17276,14 +17160,26 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainConflictResponseBody: + DeploymentsRedeployRequestBody: + title: DeploymentsRedeployRequestBody + type: object + properties: + deployment_id: + type: string + description: The ID of the deployment to redeploy. + example: Voluptas non vel unde quam esse rerum. + example: + deployment_id: Ipsum quidem. + required: + - deployment_id + DeploymentsRedeployUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17304,14 +17200,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) + description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -17319,14 +17215,14 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainForbiddenResponseBody: + DeploymentsRedeployUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17342,18 +17238,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: permission denied (default view) + example: true + description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -17362,7 +17258,7 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainGatewayErrorResponseBody: + DeploymentsRedeployUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17390,7 +17286,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: unsupported media type (default view) example: fault: false id: 123abc @@ -17405,14 +17301,14 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainInvalidResponseBody: + DomainsCreateDomainBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17428,19 +17324,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: request contains one or more invalidation fields (default view) + example: true + description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -17448,7 +17344,7 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainInvariantViolationResponseBody: + DomainsCreateDomainConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17471,19 +17367,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: resource already exists (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -17491,14 +17387,14 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainNotFoundResponseBody: + DomainsCreateDomainForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17514,19 +17410,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true - description: resource not found (default view) + description: permission denied (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -17534,26 +17430,14 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainRequestBody: - title: DomainsCreateDomainRequestBody - type: object - properties: - domain: - type: string - description: The custom domain - example: Id itaque. - example: - domain: Et soluta quia. - required: - - domain - DomainsCreateDomainUnauthorizedResponseBody: + DomainsCreateDomainGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17574,7 +17458,7 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (default view) + description: an unexpected error occurred (default view) example: fault: false id: 123abc @@ -17589,14 +17473,14 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainUnexpectedResponseBody: + DomainsCreateDomainInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17616,15 +17500,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + example: false + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -17632,7 +17516,7 @@ definitions: - temporary - timeout - fault - DomainsCreateDomainUnsupportedMediaResponseBody: + DomainsCreateDomainInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17655,12 +17539,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: unsupported media type (default view) + description: an unexpected error occurred (default view) example: fault: true id: 123abc @@ -17675,14 +17559,14 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainBadRequestResponseBody: + DomainsCreateDomainNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17698,19 +17582,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (default view) + example: true + description: resource not found (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -17718,7 +17602,19 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainConflictResponseBody: + DomainsCreateDomainRequestBody: + title: DomainsCreateDomainRequestBody + type: object + properties: + domain: + type: string + description: The custom domain + example: At fugiat debitis. + example: + domain: Quae qui dolorum. + required: + - domain + DomainsCreateDomainUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17741,12 +17637,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) + description: unauthorized access (default view) example: fault: false id: 123abc @@ -17761,7 +17657,7 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainForbiddenResponseBody: + DomainsCreateDomainUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17789,13 +17685,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -17804,7 +17700,7 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainGatewayErrorResponseBody: + DomainsCreateDomainUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17832,14 +17728,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -17847,7 +17743,7 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainInvalidResponseBody: + DomainsDeleteDomainBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17870,12 +17766,55 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? + example: false + description: request is invalid (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + DomainsDeleteDomainConflictResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? example: true - description: request contains one or more invalidation fields (default view) + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: resource already exists (default view) example: fault: true id: 123abc @@ -17890,7 +17829,7 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainInvariantViolationResponseBody: + DomainsDeleteDomainForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -17917,14 +17856,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + example: true + description: permission denied (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -17933,14 +17872,14 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainNotFoundResponseBody: + DomainsDeleteDomainGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -17961,13 +17900,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource not found (default view) + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -17976,14 +17915,14 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainUnauthorizedResponseBody: + DomainsDeleteDomainInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18003,15 +17942,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (default view) + example: true + description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -18019,14 +17958,14 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainUnexpectedResponseBody: + DomainsDeleteDomainInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18053,7 +17992,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -18062,7 +18001,7 @@ definitions: - temporary - timeout - fault - DomainsDeleteDomainUnsupportedMediaResponseBody: + DomainsDeleteDomainNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -18085,18 +18024,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: unsupported media type (default view) + example: true + description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -18105,14 +18044,14 @@ definitions: - temporary - timeout - fault - DomainsGetDomainBadRequestResponseBody: + DomainsDeleteDomainUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18132,8 +18071,51 @@ definitions: timeout: type: boolean description: Is the error a timeout? + example: true + description: unauthorized access (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + DomainsDeleteDomainUnexpectedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? example: false - description: request is invalid (default view) + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: an unexpected error occurred (default view) example: fault: false id: 123abc @@ -18148,14 +18130,14 @@ definitions: - temporary - timeout - fault - DomainsGetDomainConflictResponseBody: + DomainsDeleteDomainUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18171,14 +18153,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) + description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -18191,7 +18173,7 @@ definitions: - temporary - timeout - fault - DomainsGetDomainForbiddenResponseBody: + DomainsGetDomainBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -18218,15 +18200,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: permission denied (default view) + example: false + description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -18234,7 +18216,7 @@ definitions: - temporary - timeout - fault - DomainsGetDomainGatewayErrorResponseBody: + DomainsGetDomainConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -18257,19 +18239,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: resource already exists (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -18277,14 +18259,14 @@ definitions: - temporary - timeout - fault - DomainsGetDomainInvalidResponseBody: + DomainsGetDomainForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18300,19 +18282,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: request contains one or more invalidation fields (default view) + example: true + description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -18320,14 +18302,14 @@ definitions: - temporary - timeout - fault - DomainsGetDomainInvariantViolationResponseBody: + DomainsGetDomainGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18343,7 +18325,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -18363,14 +18345,14 @@ definitions: - temporary - timeout - fault - DomainsGetDomainNotFoundResponseBody: + DomainsGetDomainInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18386,19 +18368,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true - description: resource not found (default view) + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -18406,7 +18388,7 @@ definitions: - temporary - timeout - fault - DomainsGetDomainUnauthorizedResponseBody: + DomainsGetDomainInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -18430,13 +18412,99 @@ definitions: type: boolean description: Is the error temporary? example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: an unexpected error occurred (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + DomainsGetDomainNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: resource not found (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + DomainsGetDomainUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true timeout: type: boolean description: Is the error a timeout? example: false description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -18472,18 +18540,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -18515,7 +18583,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -18526,8 +18594,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -18542,83 +18610,79 @@ definitions: created_at: type: string description: The creation date of the environment - example: "1989-01-12T03:37:05Z" + example: "1997-02-08T17:00:25Z" format: date-time description: type: string description: The description of the environment - example: Eius est ea esse hic itaque. + example: Itaque ut quisquam rerum voluptates veritatis. entries: type: array items: $ref: '#/definitions/EnvironmentEntry' description: List of environment entries example: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. id: type: string description: The ID of the environment - example: Molestiae aperiam. + example: Itaque adipisci blanditiis voluptas eum hic quam. name: type: string description: The name of the environment - example: Maiores officiis sapiente quod et enim accusantium. + example: Quia et voluptas. organization_id: type: string description: The organization ID this environment belongs to - example: Eos quia maxime excepturi fugit. + example: Natus et. project_id: type: string description: The project ID this environment belongs to - example: Earum sit ex maxime et. + example: Dolorum officiis qui minus consequatur. slug: type: string description: The slug identifier for the environment - example: yp4 + example: 0lg pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 updated_at: type: string description: When the environment was last updated - example: "1976-03-03T00:17:29Z" + example: "1972-10-30T23:10:48Z" format: date-time example: - created_at: "1982-07-02T10:09:48Z" - description: Ad pariatur. + created_at: "1978-08-16T19:08:54Z" + description: Ut qui cum hic qui blanditiis beatae. entries: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - id: Et eius voluptates officiis nostrum. - name: Accusantium nemo voluptatum. - organization_id: Ratione vel. - project_id: Quas libero molestias odio non. - slug: "055" - updated_at: "1970-10-30T17:54:09Z" + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + id: Voluptates voluptatem repudiandae. + name: Minima et quo. + organization_id: Aut dolorum eum eum nihil ducimus. + project_id: Laborum qui sed. + slug: 9q0 + updated_at: "1976-05-01T10:42:14Z" required: - id - organization_id @@ -18635,27 +18699,27 @@ definitions: created_at: type: string description: The creation date of the environment entry - example: "2003-01-24T01:07:22Z" + example: "2001-08-21T09:03:00Z" format: date-time name: type: string description: The name of the environment variable - example: Blanditiis voluptas. + example: Nesciunt ab autem incidunt. updated_at: type: string description: When the environment entry was last updated - example: "1981-08-22T09:38:10Z" + example: "1988-08-15T04:26:29Z" format: date-time value: type: string description: Redacted values of the environment variable - example: Hic quam architecto natus. + example: Qui quis. description: A single environment entry example: - created_at: "1988-02-13T10:00:19Z" - name: Consectetur tenetur. - updated_at: "1973-12-02T19:59:58Z" - value: Autem aut est possimus. + created_at: "1997-10-19T12:05:04Z" + name: Molestiae quaerat similique quia dolorum natus quam. + updated_at: "1979-09-25T18:24:27Z" + value: Consequatur dolores est perspiciatis doloribus nihil. required: - name - value @@ -18668,15 +18732,15 @@ definitions: name: type: string description: The name of the environment variable - example: Et molestiae ut praesentium aspernatur. + example: Est et earum sed neque sit dolor. value: type: string description: The value of the environment variable - example: Qui in exercitationem voluptas consequatur. + example: Eum quam. description: A single environment entry example: - name: Quia amet voluptates eveniet quos molestiae. - value: Sed qui quis odio iusto dolorem dolorum. + name: Non praesentium eos. + value: Sapiente accusamus exercitationem nam provident tempora assumenda. required: - name - value @@ -18687,7 +18751,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18710,7 +18774,7 @@ definitions: example: true description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -18730,7 +18794,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18746,18 +18810,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -18773,7 +18837,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18793,10 +18857,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -18816,7 +18880,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18839,12 +18903,12 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -18859,7 +18923,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18879,10 +18943,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -18918,11 +18982,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: true @@ -18945,7 +19009,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -18961,7 +19025,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -18972,7 +19036,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -18988,36 +19052,38 @@ definitions: description: type: string description: Optional description of the environment - example: Sint porro quo. + example: Animi quisquam quia aspernatur ut. entries: type: array items: $ref: '#/definitions/EnvironmentEntryInput' description: List of environment variable entries example: - - name: Consequatur cum neque. - value: Architecto nemo quasi qui libero sint. - - name: Consequatur cum neque. - value: Architecto nemo quasi qui libero sint. - - name: Consequatur cum neque. - value: Architecto nemo quasi qui libero sint. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. name: type: string description: The name of the environment - example: Consequatur sed repellendus numquam. + example: Quia sint. organization_id: type: string description: The organization ID this environment belongs to - example: Asperiores quod eum distinctio ducimus voluptas libero. + example: Mollitia fugit commodi. example: - description: Et earum sed neque. + description: Culpa ea consequatur. entries: - - name: Consequatur cum neque. - value: Architecto nemo quasi qui libero sint. - - name: Consequatur cum neque. - value: Architecto nemo quasi qui libero sint. - name: Quia aspernatur ut fuga. - organization_id: Commodi aspernatur quia sint sint animi. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + name: Sed optio quidem rem aut assumenda earum. + organization_id: Sed ratione eius qui eligendi. required: - organization_id - name @@ -19029,7 +19095,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19049,7 +19115,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: fault: false @@ -19088,19 +19154,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -19115,7 +19181,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19131,18 +19197,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -19186,7 +19252,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -19217,11 +19283,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: true @@ -19229,7 +19295,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -19244,7 +19310,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19260,7 +19326,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -19271,7 +19337,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -19303,18 +19369,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -19330,7 +19396,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19346,19 +19412,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -19373,7 +19439,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19389,19 +19455,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -19432,7 +19498,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -19443,7 +19509,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -19459,7 +19525,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19486,8 +19552,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -19502,7 +19568,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19529,7 +19595,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -19545,7 +19611,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19568,11 +19634,11 @@ definitions: example: false description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -19588,7 +19654,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19615,8 +19681,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -19647,18 +19713,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -19674,7 +19740,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19690,18 +19756,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -19717,7 +19783,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19737,10 +19803,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -19776,11 +19842,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: fault: false @@ -19788,7 +19854,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -19826,12 +19892,12 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -19846,7 +19912,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19869,7 +19935,7 @@ definitions: example: false description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -19889,7 +19955,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19905,19 +19971,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -19948,19 +20014,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -19975,7 +20041,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -19995,14 +20061,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -20018,7 +20084,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -20034,11 +20100,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false @@ -20061,7 +20127,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -20077,18 +20143,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -20104,7 +20170,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -20124,15 +20190,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -20147,7 +20213,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -20174,7 +20240,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -20210,15 +20276,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -20253,15 +20319,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -20292,18 +20358,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -20319,42 +20385,45 @@ definitions: description: type: string description: The description of the environment - example: Nulla et. + example: Occaecati vel nulla. entries_to_remove: type: array items: type: string - example: Quia officiis. + example: Et nihil omnis ullam est ipsum doloribus. description: List of environment entry names to remove example: - - Ad explicabo modi assumenda modi voluptas. - - Quo at dolor ea hic error. - - Molestias dolore aperiam maiores. + - Aperiam sunt nesciunt et magni laborum. + - Autem amet quae nemo dolor. entries_to_update: type: array items: $ref: '#/definitions/EnvironmentEntryInput' description: List of environment entries to update or create example: - - name: Consequatur cum neque. - value: Architecto nemo quasi qui libero sint. - - name: Consequatur cum neque. - value: Architecto nemo quasi qui libero sint. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. name: type: string description: The name of the environment - example: Inventore voluptatem velit. + example: Vero vitae voluptatem aspernatur corporis. example: - description: Perspiciatis dolorum. + description: Possimus expedita alias cumque omnis fugiat recusandae. entries_to_remove: - - Aut vero vitae voluptatem aspernatur. - - Consequatur dolor et nihil omnis. + - Est veniam voluptatem ipsam voluptatem. + - Voluptatum ut sed qui. entries_to_update: - - name: Consequatur cum neque. - value: Architecto nemo quasi qui libero sint. - - name: Consequatur cum neque. - value: Architecto nemo quasi qui libero sint. - name: Qui voluptatem. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + - name: Accusamus illum aut quo voluptas. + value: Culpa nobis fuga quibusdam maxime eum natus. + name: Expedita placeat voluptatum consequatur aliquid debitis. required: - entries_to_update - entries_to_remove @@ -20365,7 +20434,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -20385,15 +20454,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -20428,15 +20497,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -20467,19 +20536,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -20501,37 +20570,37 @@ definitions: created_at: type: string description: When the external OAuth server was created. - example: "2009-03-12T09:47:09Z" + example: "1992-04-04T17:01:07Z" format: date-time id: type: string description: The ID of the external OAuth server - example: Aut vel architecto harum laboriosam deleniti. + example: Totam deserunt nulla nihil enim ut sunt. metadata: description: The metadata for the external OAuth server - example: Eos aspernatur ea. + example: Quaerat nesciunt deserunt veniam. project_id: type: string description: The project ID this external OAuth server belongs to - example: Explicabo earum qui quibusdam reprehenderit alias enim. + example: Porro reiciendis. slug: type: string description: The slug of the external OAuth server - example: ki4 + example: m1x pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 updated_at: type: string description: When the external OAuth server was last updated. - example: "1997-06-23T00:41:52Z" + example: "1970-12-11T11:24:29Z" format: date-time example: - created_at: "2001-02-25T21:22:30Z" - id: Occaecati facilis ipsum excepturi nobis. - metadata: Assumenda ratione aut qui. - project_id: Ipsam dolor et amet autem molestiae. - slug: nsv - updated_at: "1977-12-11T12:31:27Z" + created_at: "1975-06-18T20:40:19Z" + id: Magnam labore error quas est earum quibusdam. + metadata: Dolorum velit. + project_id: Quos aut atque nostrum vel eligendi ad. + slug: 0tt + updated_at: "2013-10-19T13:04:47Z" required: - id - project_id @@ -20545,16 +20614,16 @@ definitions: properties: metadata: description: The metadata for the external OAuth server - example: Corporis unde et eveniet est corporis placeat. + example: Repellat autem eos autem velit et similique. slug: type: string description: The slug of the external OAuth server - example: g0x + example: y3t pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 example: - metadata: Quia accusamus qui facilis. - slug: ld0 + metadata: Doloremque consectetur alias ea recusandae hic adipisci. + slug: x20 required: - slug - metadata @@ -20575,66 +20644,60 @@ definitions: $ref: '#/definitions/DeploymentLogEvent' description: The logs for the deployment example: - - attachment_id: Velit voluptatem quia accusantium ea eos quis. - attachment_type: Inventore sint repudiandae eos odio voluptatibus exercitationem. - created_at: Ut natus occaecati. - event: Facere omnis ut vel quia. - id: Ut fugiat. - message: A eos. - - attachment_id: Velit voluptatem quia accusantium ea eos quis. - attachment_type: Inventore sint repudiandae eos odio voluptatibus exercitationem. - created_at: Ut natus occaecati. - event: Facere omnis ut vel quia. - id: Ut fugiat. - message: A eos. - - attachment_id: Velit voluptatem quia accusantium ea eos quis. - attachment_type: Inventore sint repudiandae eos odio voluptatibus exercitationem. - created_at: Ut natus occaecati. - event: Facere omnis ut vel quia. - id: Ut fugiat. - message: A eos. - - attachment_id: Velit voluptatem quia accusantium ea eos quis. - attachment_type: Inventore sint repudiandae eos odio voluptatibus exercitationem. - created_at: Ut natus occaecati. - event: Facere omnis ut vel quia. - id: Ut fugiat. - message: A eos. + - attachment_id: Perferendis fuga facere. + attachment_type: Et pariatur qui. + created_at: Dolores culpa iusto voluptatem. + event: Aut neque exercitationem earum. + id: Autem repudiandae id eveniet. + message: Cumque sint accusamus aliquam. + - attachment_id: Perferendis fuga facere. + attachment_type: Et pariatur qui. + created_at: Dolores culpa iusto voluptatem. + event: Aut neque exercitationem earum. + id: Autem repudiandae id eveniet. + message: Cumque sint accusamus aliquam. + - attachment_id: Perferendis fuga facere. + attachment_type: Et pariatur qui. + created_at: Dolores culpa iusto voluptatem. + event: Aut neque exercitationem earum. + id: Autem repudiandae id eveniet. + message: Cumque sint accusamus aliquam. next_cursor: type: string description: The cursor to fetch results from - example: Qui aspernatur libero consectetur culpa est. + example: Temporibus deleniti voluptatem. status: type: string description: The status of the deployment - example: Quia dolore modi autem. + example: Beatae enim dolores laudantium pariatur esse consequatur. example: events: - - attachment_id: Velit voluptatem quia accusantium ea eos quis. - attachment_type: Inventore sint repudiandae eos odio voluptatibus exercitationem. - created_at: Ut natus occaecati. - event: Facere omnis ut vel quia. - id: Ut fugiat. - message: A eos. - - attachment_id: Velit voluptatem quia accusantium ea eos quis. - attachment_type: Inventore sint repudiandae eos odio voluptatibus exercitationem. - created_at: Ut natus occaecati. - event: Facere omnis ut vel quia. - id: Ut fugiat. - message: A eos. - - attachment_id: Velit voluptatem quia accusantium ea eos quis. - attachment_type: Inventore sint repudiandae eos odio voluptatibus exercitationem. - created_at: Ut natus occaecati. - event: Facere omnis ut vel quia. - id: Ut fugiat. - message: A eos. - - attachment_id: Velit voluptatem quia accusantium ea eos quis. - attachment_type: Inventore sint repudiandae eos odio voluptatibus exercitationem. - created_at: Ut natus occaecati. - event: Facere omnis ut vel quia. - id: Ut fugiat. - message: A eos. - next_cursor: Aliquid voluptas ducimus qui ullam. - status: Vitae incidunt ea. + - attachment_id: Perferendis fuga facere. + attachment_type: Et pariatur qui. + created_at: Dolores culpa iusto voluptatem. + event: Aut neque exercitationem earum. + id: Autem repudiandae id eveniet. + message: Cumque sint accusamus aliquam. + - attachment_id: Perferendis fuga facere. + attachment_type: Et pariatur qui. + created_at: Dolores culpa iusto voluptatem. + event: Aut neque exercitationem earum. + id: Autem repudiandae id eveniet. + message: Cumque sint accusamus aliquam. + - attachment_id: Perferendis fuga facere. + attachment_type: Et pariatur qui. + created_at: Dolores culpa iusto voluptatem. + event: Aut neque exercitationem earum. + id: Autem repudiandae id eveniet. + message: Cumque sint accusamus aliquam. + - attachment_id: Perferendis fuga facere. + attachment_type: Et pariatur qui. + created_at: Dolores culpa iusto voluptatem. + event: Aut neque exercitationem earum. + id: Autem repudiandae id eveniet. + message: Cumque sint accusamus aliquam. + next_cursor: Qui voluptatibus ut at repellendus. + status: Aut autem tenetur blanditiis illum neque. required: - events - status @@ -20649,7 +20712,7 @@ definitions: created_at: type: string description: The creation date of the deployment. - example: "1987-05-16T00:40:39Z" + example: "1994-06-21T11:14:28Z" format: date-time external_id: type: string @@ -20658,37 +20721,27 @@ definitions: external_url: type: string description: The upstream URL a deployment can refer to. This can be a github url to a commit hash or pull request. - example: Culpa omnis ea libero voluptates sint. + example: Esse cumque qui. functions_assets: type: array items: $ref: '#/definitions/DeploymentFunctions' description: The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions. example: - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm functions_tool_count: type: integer description: The number of tools in the deployment generated from OpenAPI documents. - example: 441543632865849851 + example: 2553167614810876416 format: int64 github_pr: type: string @@ -20716,104 +20769,109 @@ definitions: $ref: '#/definitions/OpenAPIv3DeploymentAsset' description: The IDs, as returned from the assets upload service, to uploaded OpenAPI 3.x documents whose operations will become tool definitions. example: - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 openapiv3_tool_count: type: integer description: The number of tools in the deployment generated from OpenAPI documents. - example: 8729564657960479313 + example: 7366981398943569096 format: int64 organization_id: type: string description: The ID of the organization that the deployment belongs to. - example: Vero et autem itaque aperiam. + example: Minus voluptas molestias animi vitae sit ratione. packages: type: array items: $ref: '#/definitions/DeploymentPackage' description: The packages that were deployed. example: - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. project_id: type: string description: The ID of the project that the deployment belongs to. - example: Consequatur harum possimus. + example: Nesciunt rerum. status: type: string description: The status of the deployment. - example: Facilis quia dolorum nihil. + example: Aut consequuntur voluptatum quo molestiae quos vel. user_id: type: string description: The ID of the user that created the deployment. - example: Fugit repellendus excepturi quia nesciunt natus corporis. + example: Assumenda quis incidunt itaque id omnis deleniti. example: cloned_from: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - created_at: "1982-07-29T04:51:30Z" + created_at: "2007-10-09T19:41:11Z" external_id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - external_url: Vero sunt quia voluptatem est. + external_url: Molestiae ea eius eius. functions_assets: - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - - asset_id: Molestiae non. - id: Ad ut in magnam rerum ut et. - name: Modi ipsa iusto corrupti officia asperiores et. - runtime: Reiciendis labore. - slug: fqd - functions_tool_count: 6199169182344351428 + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm + - asset_id: Et aut corporis eligendi. + id: Culpa quae qui dolore. + name: Ut ut voluptate qui nihil dolorum. + runtime: Quis placeat. + slug: mmm + functions_tool_count: 112240585756153281 github_pr: "1234" github_repo: speakeasyapi/gram github_sha: f33e693e9e12552043bc0ec5c37f1b8a9e076161 id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 idempotency_key: 01jqq0ajmb4qh9eppz48dejr2m openapiv3_assets: - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - - asset_id: Rerum error velit aspernatur occaecati ea. - id: Et tempora. - name: Et eum harum blanditiis officia corporis ex. - slug: g7x - openapiv3_tool_count: 9014585683267268484 - organization_id: Veniam soluta odio quis sit qui. + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + - asset_id: Vitae in dolorem. + id: Soluta ipsam provident. + name: Tempore quisquam. + slug: 4d8 + openapiv3_tool_count: 1915872851136596644 + organization_id: Pariatur minus quos quia. packages: - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - - id: Soluta ipsam provident. - name: Vitae in dolorem. - version: Tempore quisquam. - project_id: Odio eum iure voluptas. - status: Error delectus nam laboriosam. - user_id: Alias ex nulla consequuntur. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + - id: Illum nihil et ipsa tempore est ipsam. + name: Accusamus harum. + version: Deleniti sapiente qui. + project_id: Sit assumenda pariatur voluptatem vel. + status: Cumque dolor quas sint. + user_id: Quae beatae qui excepturi saepe. required: - id - created_at @@ -20832,13 +20890,13 @@ definitions: description: type: string description: The description of the toolset - example: Itaque facilis et alias accusamus. + example: Voluptas sint enim. environment: $ref: '#/definitions/Environment' name: type: string description: The name of the toolset - example: Perferendis veniam molestiae culpa non. + example: Sequi ratione aut veritatis. prompt_templates: type: array items: @@ -20846,332 +20904,269 @@ definitions: description: The list of prompt templates example: - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. - engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. - tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" - variation: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. security_variables: type: array items: $ref: '#/definitions/SecurityVariable' description: The security variables that are relevant to the toolset example: - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - - 97 - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: type: array items: $ref: '#/definitions/ServerVariable' description: The server variables that are relevant to the toolset example: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. tools: type: array items: @@ -21180,908 +21175,993 @@ definitions: example: - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. - response_filter: - content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. - status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. - tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" - variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. - tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - prompt_template: - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. - engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. - tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" - variation: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - http_tool_definition: - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. example: - description: Dolore ex inventore maxime qui. + description: Eligendi sequi commodi. environment: - created_at: "2013-08-21T08:10:57Z" - description: Soluta qui reiciendis ipsa aliquid. + created_at: "2010-03-24T05:12:00Z" + description: Non repellendus quis tempore at. entries: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - id: Doloremque itaque. - name: Quaerat vel accusantium beatae hic. - organization_id: Tempora repellendus adipisci nobis repellendus consequuntur. - project_id: Dolor reiciendis culpa ipsum. - slug: nln - updated_at: "1986-01-09T05:48:22Z" - name: Aspernatur pariatur esse rem voluptatum optio. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + id: Ipsa aliquid incidunt corporis praesentium. + name: Et nam consequatur nostrum et laudantium. + organization_id: Reiciendis ea harum sint. + project_id: Ad optio voluptatem sit ratione. + slug: qgg + updated_at: "1979-01-22T05:33:58Z" + name: Rem fuga molestias. prompt_templates: - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. + engine: mustache + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. + tools_hint: + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. security_variables: - - bearer_format: Ut quasi laboriosam eum ad quam. - env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. - oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 - - 116 - - 32 - - 100 - - 101 - - 98 - - 105 - - 116 - - 105 - - 115 - - 46 - oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 - - 116 - - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. tools: - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + prompt_template: + canonical: + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. + tags: + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. + engine: mustache + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. + tools_hint: + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - http_tool_definition: + canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. + response_filter: + content_types: + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. + status_codes: + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. + tags: + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - http_tool_definition: + canonical: + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. + tags: + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. + response_filter: + content_types: + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. + status_codes: + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. + tags: + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + prompt_template: + canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. + engine: mustache + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. + tools_hint: + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - name - tools @@ -22094,30 +22174,35 @@ definitions: $ref: '#/definitions/Integration' example: integration: - package_description: Qui dolore accusamus nihil nihil iusto. - package_description_raw: Officia ab corporis quos soluta. - package_id: Ea optio tempora quam. - package_image_asset_id: Dolorem voluptatum aut. + package_description: Ex aut. + package_description_raw: Et nihil perspiciatis. + package_id: Accusamus aut adipisci iure. + package_image_asset_id: Aut debitis voluptatem voluptatem tempore cupiditate cumque. package_keywords: - - Ut est cupiditate veniam quo non. - - Officia et sint. - - Officiis natus sapiente neque exercitationem adipisci. - - Exercitationem labore id maxime minima nihil. - package_name: Asperiores id. - package_summary: Voluptatibus et blanditiis rerum voluptatem veritatis cumque. - package_title: Et et beatae ea blanditiis maiores. - package_url: Illo est exercitationem ut. + - Enim est atque quisquam ipsum. + - Id libero et. + - Cupiditate vel. + - Ut id sapiente sed molestiae aut quis. + package_name: Omnis atque. + package_summary: Explicabo est ipsa modi nisi. + package_title: Veniam consectetur voluptatum ut. + package_url: Dignissimos modi nemo aspernatur a voluptatem rerum. tool_names: - - Doloremque magni. - - Excepturi distinctio. - - Sed placeat aperiam. - version: Accusamus aut adipisci iure. - version_created_at: "1976-01-04T01:05:52Z" + - Quisquam minus quo rerum. + - Vel quos. + - Natus quidem harum ex at eius repellendus. + - Alias harum. + version: Consequatur doloremque magni reiciendis excepturi distinctio. + version_created_at: "2002-10-01T17:20:59Z" versions: - - created_at: "1977-07-21T04:16:29Z" - version: Ea ut ea nemo sed sit vero. - - created_at: "1977-07-21T04:16:29Z" - version: Ea ut ea nemo sed sit vero. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. GetLatestDeploymentResult: title: GetLatestDeploymentResult type: object @@ -22134,53 +22219,54 @@ definitions: example: template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - template GetSlackConnectionResult: @@ -22190,31 +22276,31 @@ definitions: created_at: type: string description: When the toolset was created. - example: "1998-07-20T02:19:08Z" + example: "2014-12-05T01:36:36Z" format: date-time default_toolset_slug: type: string description: The default toolset slug for this Slack connection - example: Qui sint omnis in dolorem maiores eos. + example: Voluptatem est. slack_team_id: type: string description: The ID of the connected Slack team - example: Quaerat minus repellat aliquam consequatur eveniet. + example: Possimus illum culpa porro qui dolor commodi. slack_team_name: type: string description: The name of the connected Slack team - example: Et maxime. + example: Quaerat vitae quos deleniti voluptate sed distinctio. updated_at: type: string description: When the toolset was last updated. - example: "2011-10-28T17:02:15Z" + example: "1984-10-07T06:01:04Z" format: date-time example: - created_at: "1991-05-08T16:52:20Z" - default_toolset_slug: Iure fugiat. - slack_team_id: Cupiditate sed blanditiis corporis voluptatum. - slack_team_name: Esse delectus. - updated_at: "1981-02-08T00:28:35Z" + created_at: "1970-11-04T21:55:34Z" + default_toolset_slug: Earum debitis est molestiae iste qui. + slack_team_id: Ducimus officiis quaerat. + slack_team_name: Aut voluptatum soluta. + updated_at: "2004-01-02T17:59:19Z" required: - slack_team_name - slack_team_id @@ -22230,170 +22316,172 @@ definitions: canonical_name: type: string description: The canonical name of the tool. Will be the same as the name if there is no variation. - example: Alias totam excepturi debitis aut veritatis veritatis. + example: Repudiandae explicabo cupiditate aut labore. confirm: type: string description: Confirmation mode for the tool - example: Et consequatur rerum ut est magni. + example: Est cumque adipisci eum qui. confirm_prompt: type: string description: Prompt for the confirmation - example: Eum nesciunt. + example: Quas dolorem alias facere aut sapiente aut. created_at: type: string description: The creation date of the tool. - example: "1994-06-26T21:35:51Z" + example: "2009-01-28T19:52:26Z" format: date-time default_server_url: type: string description: The default server URL for the tool - example: Aut aut facilis fugit excepturi id doloremque. + example: Et consequatur rerum ut est magni. deployment_id: type: string description: The ID of the deployment - example: Molestiae ut quasi. + example: Ad distinctio alias doloribus consequatur sunt. description: type: string description: Description of the tool - example: Deleniti quis provident officiis nam. + example: In velit. http_method: type: string description: HTTP method for the request - example: Similique tempore minima at sequi nemo. + example: Eum nesciunt. id: type: string description: The ID of the tool - example: Sed cumque minima. + example: Nesciunt culpa possimus voluptates veniam nisi cupiditate. name: type: string description: The name of the tool - example: Libero quisquam aspernatur molestias. + example: Accusamus dolores optio vel magnam et. openapiv3_document_id: type: string description: The ID of the OpenAPI v3 document - example: Dolor eos aut et molestiae rerum. + example: Aperiam doloribus cumque. openapiv3_operation: type: string description: OpenAPI v3 operation - example: Amet ipsam consequatur fuga magnam maiores et. + example: Libero quisquam aspernatur molestias. package_name: type: string description: The name of the source package - example: Est et natus. + example: Omnis qui. path: type: string description: Path for the request - example: Excepturi rem qui illum enim molestias sint. + example: Porro est ratione possimus. project_id: type: string description: The ID of the project - example: Aperiam doloribus cumque. + example: Dignissimos earum voluptate id aspernatur. response_filter: $ref: '#/definitions/ResponseFilter' schema: type: string description: JSON schema for the request - example: Quis et accusantium dolorem illum. + example: Ut ipsum dolores et sapiente eveniet. schema_version: type: string description: Version of the schema - example: Quia eos reiciendis voluptas molestias ipsum qui. + example: Amet consequatur tempore. security: type: string description: Security requirements for the underlying HTTP endpoint - example: Molestiae nihil aperiam fugiat inventore. + example: Quis et accusantium dolorem illum. summarizer: type: string description: Summarizer for the tool - example: Porro est ratione possimus. + example: Suscipit mollitia debitis dolores et eaque. summary: type: string description: Summary of the tool - example: Nihil recusandae animi. + example: Odit maxime qui. tags: type: array items: type: string - example: Libero nihil et magnam dolor esse possimus. + example: Alias totam excepturi debitis aut veritatis veritatis. description: The tags list for this http tool example: - - Natus et eum vel vel. - - Dolorem neque. - - Expedita voluptatem quaerat cupiditate numquam illum. + - Quis provident officiis nam. + - Quia eos reiciendis voluptas molestias ipsum qui. tool_urn: type: string description: The URN of this tool - example: Distinctio sapiente pariatur et nam. + example: Accusantium sint suscipit id necessitatibus occaecati. updated_at: type: string description: The last update date of the tool. - example: "2005-07-16T02:32:57Z" + example: "2009-02-04T16:22:18Z" format: date-time variation: $ref: '#/definitions/ToolVariation' description: An HTTP tool example: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Molestiae id sit perferendis odit. - confirm: Et alias rerum. - confirm_prompt: Et tempore consectetur ea necessitatibus officiis. - created_at: "1970-03-16T21:14:58Z" - default_server_url: Ratione ratione voluptatem corrupti blanditiis veritatis quia. - deployment_id: Rerum iusto et reiciendis consequuntur mollitia. - description: Omnis quia consequatur delectus. - http_method: Hic rerum sit maxime quod vel. - id: Optio animi earum. - name: Minus totam. - openapiv3_document_id: Id vero provident facilis facilis voluptate voluptatem. - openapiv3_operation: Maiores inventore a atque et. - package_name: Voluptas quis aut quo earum aut facere. - path: Quia quia. - project_id: Officia aperiam. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Rerum et doloribus est dolores. + confirm: Unde provident ut quia. + confirm_prompt: Quisquam odio rem dolor repellat voluptas. + created_at: "2009-12-11T04:19:54Z" + default_server_url: Id labore illo aliquam adipisci non. + deployment_id: Omnis quia consequatur delectus. + description: Qui repellendus. + http_method: Ut quod laboriosam. + id: Deleniti ab vel. + name: Corrupti excepturi. + openapiv3_document_id: Harum pariatur nihil nisi similique harum perferendis. + openapiv3_operation: Et alias rerum. + package_name: Aut ut. + path: Beatae deleniti blanditiis et commodi ratione. + project_id: Impedit illum. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Harum pariatur nihil nisi similique harum perferendis. - schema_version: Ea aliquam neque reiciendis omnis necessitatibus et. - security: Veritatis dolorem quod iusto pariatur totam. - summarizer: Maiores rerum aliquid iste similique repellendus illo. - summary: Est ab voluptatum consequatur. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Ut nulla. + schema_version: Autem rerum excepturi quia et. + security: Voluptatibus nihil aliquid eius soluta deserunt. + summarizer: Soluta velit sint. + summary: Ea aliquam neque reiciendis omnis necessitatibus et. tags: - - Nesciunt omnis aliquam quo. - - Vero facere incidunt. - tool_urn: Quia quia et dolorem veniam ut. - updated_at: "1974-07-17T05:50:20Z" + - Tempore consectetur ea. + - Officiis sed maiores rerum. + - Iste similique. + - Illo voluptas ut quis officia. + tool_urn: Corrupti rerum. + updated_at: "1991-11-07T22:31:36Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - summary - tags @@ -22436,15 +22524,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -22475,14 +22563,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -22502,7 +22590,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -22530,7 +22618,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -22545,7 +22633,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -22568,11 +22656,11 @@ definitions: example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -22588,7 +22676,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -22615,8 +22703,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -22651,15 +22739,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -22674,7 +22762,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -22697,12 +22785,12 @@ definitions: example: false description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -22733,7 +22821,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -22745,7 +22833,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -22760,7 +22848,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -22780,15 +22868,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -22803,7 +22891,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -22826,11 +22914,11 @@ definitions: example: true description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -22845,94 +22933,92 @@ definitions: properties: package_description: type: string - example: Aut rerum ratione similique. + example: Porro voluptas ea harum expedita nihil illo. package_description_raw: type: string - example: Eveniet reprehenderit neque facere et beatae. + example: Dolorem quis qui et excepturi. package_id: type: string - example: Ut animi. + example: Est eos. package_image_asset_id: type: string - example: Alias est earum numquam aliquid voluptatum. + example: Autem deleniti molestiae quae. package_keywords: type: array items: type: string - example: Omnis rerum cum. + example: Et voluptatem molestiae. example: - - Quis temporibus porro dolorem omnis et. - - Consequatur quasi optio qui blanditiis accusantium ratione. - - Eos quisquam neque facilis blanditiis. - - Et distinctio. + - Fugiat est. + - Fuga at molestias consequatur perferendis saepe. package_name: type: string - example: Delectus a qui. + example: Neque facilis blanditiis qui. package_summary: type: string - example: Dolor porro placeat et molestiae. + example: Est earum numquam aliquid voluptatum. package_title: type: string - example: Eum omnis. + example: Distinctio rerum. package_url: type: string - example: Laborum dolor ut. + example: Non dolorem laudantium itaque sed ut repellat. tool_names: type: array items: type: string - example: Debitis aut ut. + example: Totam aut. example: - - Atque cupiditate officia exercitationem veniam aut. - - Nisi et fuga. - - Quia ipsam possimus nisi placeat quia qui. + - Non atque cumque eos reiciendis et nemo. + - Tempora velit. + - Itaque qui ea aut velit repellendus unde. version: type: string description: The latest version of the integration - example: Porro voluptas ea harum expedita nihil illo. + example: Alias necessitatibus non qui. version_created_at: type: string - example: "1981-07-13T00:34:29Z" + example: "1979-06-08T01:10:23Z" format: date-time versions: type: array items: $ref: '#/definitions/IntegrationVersion' example: - - created_at: "1977-07-21T04:16:29Z" - version: Ea ut ea nemo sed sit vero. - - created_at: "1977-07-21T04:16:29Z" - version: Ea ut ea nemo sed sit vero. - - created_at: "1977-07-21T04:16:29Z" - version: Ea ut ea nemo sed sit vero. - - created_at: "1977-07-21T04:16:29Z" - version: Ea ut ea nemo sed sit vero. - example: - package_description: Aperiam molestiae ducimus sit animi cum eius. - package_description_raw: Aut magni nobis illum placeat ut possimus. - package_id: Inventore quia esse. - package_image_asset_id: Eligendi eligendi. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. + example: + package_description: Eligendi eligendi. + package_description_raw: Pariatur nostrum ut voluptates illo esse fuga. + package_id: Magni nobis illum placeat ut possimus laborum. + package_image_asset_id: Maiores voluptatem quibusdam earum temporibus voluptatibus. package_keywords: - - Veritatis consectetur. - - Enim autem cumque sint provident laborum. - - Praesentium et minus suscipit. - package_name: Eum labore provident alias porro laboriosam voluptas. - package_summary: Voluptas odio id hic. - package_title: Et nihil aut consequuntur fugit praesentium sit. - package_url: Dolor perspiciatis ut aspernatur. + - Accusantium molestias esse ducimus ut. + - Enim ipsum. + - Odit dolore est quia laborum perspiciatis. + - Quo neque sint quidem animi totam consequatur. + package_name: Perspiciatis ut aspernatur ea dolores veritatis consectetur. + package_summary: Praesentium et minus suscipit. + package_title: Enim autem cumque sint provident laborum. + package_url: Possimus et alias perspiciatis consequatur eligendi atque. tool_names: - - Dolorem repudiandae ut nostrum dignissimos. - - Odio et. - - Aut et laudantium tenetur. - version: Pariatur nostrum ut voluptates illo esse fuga. - version_created_at: "1995-05-15T18:37:15Z" + - Aspernatur dolorum ut. + - Iste adipisci cum repellendus tempore voluptatem corporis. + - Omnis sed repellendus cum ut. + - Consequatur sed illum. + version: Tempore maiores assumenda. + version_created_at: "1980-06-27T17:10:18Z" versions: - - created_at: "1977-07-21T04:16:29Z" - version: Ea ut ea nemo sed sit vero. - - created_at: "1977-07-21T04:16:29Z" - version: Ea ut ea nemo sed sit vero. - - created_at: "1977-07-21T04:16:29Z" - version: Ea ut ea nemo sed sit vero. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. + - created_at: "1991-03-27T12:15:53Z" + version: Id et. required: - package_id - package_name @@ -22947,63 +23033,63 @@ definitions: properties: package_id: type: string - example: Ad sunt. + example: Eum pariatur. package_image_asset_id: type: string - example: Porro eaque occaecati facere nostrum itaque mollitia. + example: Corrupti blanditiis. package_keywords: type: array items: type: string - example: Qui architecto quos. + example: Rerum eum adipisci. example: - - Omnis aliquam. - - Tempore autem quis blanditiis. + - Eaque enim aut iusto enim sint. + - Ut facere sed beatae quae ab voluptates. + - Laudantium quod aperiam labore ex ipsum. package_name: type: string - example: Corrupti atque nesciunt. + example: Aliquid et qui est consequatur provident ut. package_summary: type: string - example: Et accusantium mollitia fugiat id dolore. + example: Assumenda quas veritatis qui dolores cupiditate dolore. package_title: type: string - example: Accusamus rerum. + example: Laborum quae ad nihil. package_url: type: string - example: Nihil corrupti esse tenetur. + example: Temporibus ut ea. tool_names: type: array items: type: string - example: Corrupti blanditiis. + example: Unde minus velit et eum. example: - - Libero velit aut autem ullam. - - Molestiae omnis pariatur mollitia et. - - Labore sapiente deleniti tenetur non optio. - - Perspiciatis repellat vero nam consequatur quia culpa. + - Rerum perferendis dolorem. + - Sit omnis rem ipsum. version: type: string - example: Quis quidem beatae necessitatibus. + example: Earum libero velit aut autem ullam minima. version_created_at: type: string - example: "1988-08-18T16:16:31Z" + example: "2008-10-13T14:48:03Z" format: date-time example: - package_id: Aut excepturi. - package_image_asset_id: Nihil voluptatem quibusdam et molestiae amet. + package_id: Aut quia est esse ullam in sit. + package_image_asset_id: Molestias unde tempora accusamus facere dicta. package_keywords: - - Ipsam voluptatibus. - - Et similique soluta. - package_name: Nostrum quisquam reprehenderit qui molestiae quos. - package_summary: Ut tenetur. - package_title: Dicta dolor. - package_url: Eos possimus. + - Consequatur ut quo ratione eveniet. + - Doloremque neque labore. + package_name: Ducimus nostrum nostrum nihil. + package_summary: Aut aliquid voluptatem odio sapiente. + package_title: Iusto aperiam ut aut in voluptatem unde. + package_url: Quo repellat voluptas molestiae. tool_names: - - Dicta qui sunt velit omnis perferendis. - - Ea facere nesciunt dolores enim nihil. - - Et ipsa esse quasi ut. - version: Facilis voluptatem quibusdam unde minus velit et. - version_created_at: "1988-12-19T09:29:20Z" + - Consequatur ipsa consectetur et et mollitia non. + - Alias tempore maxime quae aperiam blanditiis et. + - Enim non iure dolores et impedit beatae. + - Alias est exercitationem. + version: Sunt velit omnis perferendis. + version_created_at: "1974-08-19T23:25:28Z" required: - package_id - package_name @@ -23016,14 +23102,14 @@ definitions: properties: created_at: type: string - example: "1976-09-01T02:09:25Z" + example: "1975-11-01T01:30:15Z" format: date-time version: type: string - example: At voluptas a dolorum numquam. + example: Voluptatum rerum odit. example: - created_at: "1988-04-04T13:44:21Z" - version: Consequatur nobis dicta sequi corporis. + created_at: "1975-09-30T23:26:35Z" + version: Quaerat asperiores distinctio. required: - version - created_at @@ -23034,7 +23120,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23050,18 +23136,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -23093,19 +23179,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -23120,7 +23206,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23143,7 +23229,7 @@ definitions: example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -23163,7 +23249,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23179,11 +23265,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true @@ -23206,7 +23292,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23229,11 +23315,11 @@ definitions: example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -23277,7 +23363,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -23292,7 +23378,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23312,14 +23398,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -23335,7 +23421,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23351,19 +23437,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -23378,7 +23464,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23394,18 +23480,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -23437,7 +23523,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -23448,7 +23534,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -23480,11 +23566,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false @@ -23523,14 +23609,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -23570,15 +23656,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -23613,15 +23699,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -23636,7 +23722,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23652,7 +23738,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -23663,8 +23749,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -23695,7 +23781,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -23707,7 +23793,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -23738,19 +23824,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -23765,7 +23851,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23781,18 +23867,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -23808,7 +23894,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23824,19 +23910,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -23871,10 +23957,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -23894,65 +23980,65 @@ definitions: created_at: type: string description: The creation date of the key. - example: "2000-09-26T12:49:38Z" + example: "1975-03-13T16:29:20Z" format: date-time created_by_user_id: type: string description: The ID of the user who created this key - example: Delectus quae atque suscipit sequi soluta. + example: Sed repellendus optio. id: type: string description: The ID of the key - example: Aut enim non iure dolores et impedit. + example: Consequatur iusto nesciunt aut enim accusamus eius. key: type: string description: The token of the api key (only returned on key creation) - example: Asperiores et necessitatibus totam tenetur velit. + example: Debitis aliquam dolor repudiandae ut facere. key_prefix: type: string description: The store prefix of the api key for recognition - example: Dignissimos molestiae nihil. + example: Qui qui eum numquam non. name: type: string description: The name of the key - example: Veritatis quia ullam atque. + example: Non adipisci voluptas nisi libero consectetur. organization_id: type: string description: The organization ID this key belongs to - example: Eveniet alias est exercitationem corporis voluptas. + example: Veritatis aspernatur officiis vel voluptas. project_id: type: string description: The optional project ID this key is scoped to - example: Exercitationem vel et aut. + example: Saepe quibusdam magni rerum ut pariatur. scopes: type: array items: type: string - example: Aut optio optio omnis et ut enim. + example: Aspernatur ratione non hic soluta beatae. description: List of permission scopes for this key example: - - Sapiente sed aliquam veritatis neque qui exercitationem. - - Architecto molestias dolores voluptatem doloribus vel. - - Voluptatem laudantium et sit reiciendis placeat ut. - - Consequatur iusto nesciunt aut enim accusamus eius. + - Excepturi excepturi distinctio provident cumque autem. + - Corrupti fuga consequuntur veritatis necessitatibus aliquam perspiciatis. + - Labore illo. updated_at: type: string description: When the key was last updated. - example: "1978-01-26T00:31:43Z" + example: "1996-07-02T02:47:09Z" format: date-time example: - created_at: "1992-02-01T03:53:24Z" - created_by_user_id: Blanditiis rerum incidunt et. - id: Ipsam provident. - key: Quae dolore voluptas alias hic dolor. - key_prefix: Quo perspiciatis. - name: Beatae quis tenetur aperiam eos aperiam autem. - organization_id: Odio et repellendus. - project_id: Consequatur sed quia occaecati at dolor. + created_at: "2002-12-16T12:38:58Z" + created_by_user_id: Quod omnis dolorem veniam sint qui. + id: Laboriosam consequuntur ut fugiat reprehenderit. + key: Dolore totam officia. + key_prefix: Tempore velit ea sit tenetur repellendus. + name: Deserunt dolorem sapiente. + organization_id: Qui laboriosam consectetur nisi saepe omnis. + project_id: Neque consectetur laboriosam. scopes: - - Aut autem. - - Molestiae inventore officiis amet et ut sapiente. - updated_at: "1976-12-15T08:22:10Z" + - Aut culpa. + - Maxime labore neque velit. + - Nisi odio. + updated_at: "2001-02-23T06:33:49Z" required: - id - organization_id @@ -23996,8 +24082,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -24040,7 +24126,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -24055,7 +24141,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24078,7 +24164,7 @@ definitions: example: false description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -24098,7 +24184,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24121,12 +24207,12 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -24157,7 +24243,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -24169,7 +24255,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -24204,7 +24290,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false @@ -24212,7 +24298,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -24247,10 +24333,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -24270,22 +24356,22 @@ definitions: name: type: string description: The name of the key - example: Nihil officiis. + example: Velit et occaecati nam iure. scopes: type: array items: type: string - example: Quia qui veniam earum occaecati id corrupti. + example: Est tempore. description: The scopes of the key that determines its permissions. example: - - Nostrum similique porro. + - Quisquam aut et aperiam quod. + - Cumque modi et hic. minItems: 1 example: - name: Ut quo est reprehenderit ut. + name: Eos eveniet aut sed earum vel et. scopes: - - Quaerat veritatis aut. - - Aut quasi nostrum et. - - Eos quasi. + - Mollitia voluptatibus et. + - Qui autem. required: - name - scopes @@ -24296,7 +24382,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24319,7 +24405,7 @@ definitions: example: false description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -24339,7 +24425,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24359,15 +24445,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -24382,7 +24468,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24410,7 +24496,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -24445,10 +24531,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -24484,18 +24570,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -24527,18 +24613,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -24574,15 +24660,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -24613,11 +24699,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: fault: true @@ -24625,7 +24711,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -24640,7 +24726,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24660,15 +24746,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -24683,7 +24769,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24699,18 +24785,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -24726,7 +24812,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24742,7 +24828,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -24754,7 +24840,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -24769,7 +24855,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24785,18 +24871,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -24812,7 +24898,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24828,18 +24914,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -24855,7 +24941,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24871,19 +24957,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -24898,7 +24984,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24925,8 +25011,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -24941,7 +25027,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -24964,12 +25050,12 @@ definitions: example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -24978,6 +25064,92 @@ definitions: - timeout - fault KeysRevokeKeyGatewayErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: an unexpected error occurred (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + KeysRevokeKeyInvalidResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: request contains one or more invalidation fields (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + KeysRevokeKeyInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -25006,12 +25178,98 @@ definitions: description: Is the error a timeout? example: false description: an unexpected error occurred (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + KeysRevokeKeyNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: resource not found (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + KeysRevokeKeyUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: unauthorized access (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true timeout: true required: - name @@ -25020,7 +25278,7 @@ definitions: - temporary - timeout - fault - KeysRevokeKeyInvalidResponseBody: + KeysRevokeKeyUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -25040,49 +25298,6 @@ definitions: type: string description: Name is the name of this class of errors. example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: request contains one or more invalidation fields (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - KeysRevokeKeyInvariantViolationResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request temporary: type: boolean description: Is the error temporary? @@ -25093,7 +25308,7 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -25106,57 +25321,14 @@ definitions: - temporary - timeout - fault - KeysRevokeKeyNotFoundResponseBody: + KeysRevokeKeyUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? example: true - description: resource not found (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - KeysRevokeKeyUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -25176,101 +25348,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: unauthorized access (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - KeysRevokeKeyUnexpectedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - KeysRevokeKeyUnsupportedMediaResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -25288,50 +25374,43 @@ definitions: $ref: '#/definitions/Asset' description: The list of assets example: - - content_length: 7034713796615647979 - content_type: Iure aut. - created_at: "2004-10-04T04:44:01Z" - id: Omnis corporis ex tenetur distinctio. - kind: image - sha256: Nihil vel est ea debitis ex. - updated_at: "1970-02-28T13:05:31Z" - - content_length: 7034713796615647979 - content_type: Iure aut. - created_at: "2004-10-04T04:44:01Z" - id: Omnis corporis ex tenetur distinctio. - kind: image - sha256: Nihil vel est ea debitis ex. - updated_at: "1970-02-28T13:05:31Z" - - content_length: 7034713796615647979 - content_type: Iure aut. - created_at: "2004-10-04T04:44:01Z" - id: Omnis corporis ex tenetur distinctio. - kind: image - sha256: Nihil vel est ea debitis ex. - updated_at: "1970-02-28T13:05:31Z" + - content_length: 1132377214323733000 + content_type: Labore repellat ut quae nostrum. + created_at: "1995-06-21T21:27:59Z" + id: Magni sit nemo. + kind: unknown + sha256: Quas praesentium voluptatem quo. + updated_at: "1983-08-25T01:13:59Z" + - content_length: 1132377214323733000 + content_type: Labore repellat ut quae nostrum. + created_at: "1995-06-21T21:27:59Z" + id: Magni sit nemo. + kind: unknown + sha256: Quas praesentium voluptatem quo. + updated_at: "1983-08-25T01:13:59Z" + - content_length: 1132377214323733000 + content_type: Labore repellat ut quae nostrum. + created_at: "1995-06-21T21:27:59Z" + id: Magni sit nemo. + kind: unknown + sha256: Quas praesentium voluptatem quo. + updated_at: "1983-08-25T01:13:59Z" example: assets: - - content_length: 7034713796615647979 - content_type: Iure aut. - created_at: "2004-10-04T04:44:01Z" - id: Omnis corporis ex tenetur distinctio. - kind: image - sha256: Nihil vel est ea debitis ex. - updated_at: "1970-02-28T13:05:31Z" - - content_length: 7034713796615647979 - content_type: Iure aut. - created_at: "2004-10-04T04:44:01Z" - id: Omnis corporis ex tenetur distinctio. - kind: image - sha256: Nihil vel est ea debitis ex. - updated_at: "1970-02-28T13:05:31Z" - - content_length: 7034713796615647979 - content_type: Iure aut. - created_at: "2004-10-04T04:44:01Z" - id: Omnis corporis ex tenetur distinctio. - kind: image - sha256: Nihil vel est ea debitis ex. - updated_at: "1970-02-28T13:05:31Z" + - content_length: 1132377214323733000 + content_type: Labore repellat ut quae nostrum. + created_at: "1995-06-21T21:27:59Z" + id: Magni sit nemo. + kind: unknown + sha256: Quas praesentium voluptatem quo. + updated_at: "1983-08-25T01:13:59Z" + - content_length: 1132377214323733000 + content_type: Labore repellat ut quae nostrum. + created_at: "1995-06-21T21:27:59Z" + id: Magni sit nemo. + kind: unknown + sha256: Quas praesentium voluptatem quo. + updated_at: "1983-08-25T01:13:59Z" required: - assets ListChatsResult: @@ -25344,44 +25423,44 @@ definitions: $ref: '#/definitions/ChatOverview' description: The list of chats example: - - created_at: "1979-03-30T12:34:54Z" - id: Mollitia ratione dolore odio. - num_messages: 8348192860018684335 - title: Aliquid quis quo eaque sint. - updated_at: "2008-12-22T02:25:55Z" - user_id: Quo tenetur. - - created_at: "1979-03-30T12:34:54Z" - id: Mollitia ratione dolore odio. - num_messages: 8348192860018684335 - title: Aliquid quis quo eaque sint. - updated_at: "2008-12-22T02:25:55Z" - user_id: Quo tenetur. - - created_at: "1979-03-30T12:34:54Z" - id: Mollitia ratione dolore odio. - num_messages: 8348192860018684335 - title: Aliquid quis quo eaque sint. - updated_at: "2008-12-22T02:25:55Z" - user_id: Quo tenetur. + - created_at: "2006-12-24T19:43:51Z" + id: Rerum rerum sequi et quia. + num_messages: 4561151251526202671 + title: Sunt eos optio. + updated_at: "2015-11-01T06:05:27Z" + user_id: Vel vel earum earum iure tempore. + - created_at: "2006-12-24T19:43:51Z" + id: Rerum rerum sequi et quia. + num_messages: 4561151251526202671 + title: Sunt eos optio. + updated_at: "2015-11-01T06:05:27Z" + user_id: Vel vel earum earum iure tempore. + - created_at: "2006-12-24T19:43:51Z" + id: Rerum rerum sequi et quia. + num_messages: 4561151251526202671 + title: Sunt eos optio. + updated_at: "2015-11-01T06:05:27Z" + user_id: Vel vel earum earum iure tempore. example: chats: - - created_at: "1979-03-30T12:34:54Z" - id: Mollitia ratione dolore odio. - num_messages: 8348192860018684335 - title: Aliquid quis quo eaque sint. - updated_at: "2008-12-22T02:25:55Z" - user_id: Quo tenetur. - - created_at: "1979-03-30T12:34:54Z" - id: Mollitia ratione dolore odio. - num_messages: 8348192860018684335 - title: Aliquid quis quo eaque sint. - updated_at: "2008-12-22T02:25:55Z" - user_id: Quo tenetur. - - created_at: "1979-03-30T12:34:54Z" - id: Mollitia ratione dolore odio. - num_messages: 8348192860018684335 - title: Aliquid quis quo eaque sint. - updated_at: "2008-12-22T02:25:55Z" - user_id: Quo tenetur. + - created_at: "2006-12-24T19:43:51Z" + id: Rerum rerum sequi et quia. + num_messages: 4561151251526202671 + title: Sunt eos optio. + updated_at: "2015-11-01T06:05:27Z" + user_id: Vel vel earum earum iure tempore. + - created_at: "2006-12-24T19:43:51Z" + id: Rerum rerum sequi et quia. + num_messages: 4561151251526202671 + title: Sunt eos optio. + updated_at: "2015-11-01T06:05:27Z" + user_id: Vel vel earum earum iure tempore. + - created_at: "2006-12-24T19:43:51Z" + id: Rerum rerum sequi et quia. + num_messages: 4561151251526202671 + title: Sunt eos optio. + updated_at: "2015-11-01T06:05:27Z" + user_id: Vel vel earum earum iure tempore. required: - chats ListDeploymentResult: @@ -25394,52 +25473,44 @@ definitions: $ref: '#/definitions/DeploymentSummary' description: A list of deployments example: - - created_at: "1988-07-26T22:57:27Z" - functions_asset_count: 3363887023128515012 - functions_tool_count: 4015648503502208550 + - created_at: "1981-08-07T02:48:32Z" + functions_asset_count: 119286388606153277 + functions_tool_count: 7400311089740729027 id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - openapiv3_asset_count: 6776476714006962122 - openapiv3_tool_count: 174755565363657734 - status: Vitae exercitationem non aut. - user_id: Itaque facilis. - - created_at: "1988-07-26T22:57:27Z" - functions_asset_count: 3363887023128515012 - functions_tool_count: 4015648503502208550 + openapiv3_asset_count: 3987120072830406976 + openapiv3_tool_count: 6376994446366840476 + status: Consequatur recusandae non tenetur rem. + user_id: Accusamus quo reiciendis aut qui qui animi. + - created_at: "1981-08-07T02:48:32Z" + functions_asset_count: 119286388606153277 + functions_tool_count: 7400311089740729027 id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - openapiv3_asset_count: 6776476714006962122 - openapiv3_tool_count: 174755565363657734 - status: Vitae exercitationem non aut. - user_id: Itaque facilis. + openapiv3_asset_count: 3987120072830406976 + openapiv3_tool_count: 6376994446366840476 + status: Consequatur recusandae non tenetur rem. + user_id: Accusamus quo reiciendis aut qui qui animi. next_cursor: type: string description: The cursor to fetch results from example: 01jp3f054qc02gbcmpp0qmyzed example: items: - - created_at: "1988-07-26T22:57:27Z" - functions_asset_count: 3363887023128515012 - functions_tool_count: 4015648503502208550 - id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - openapiv3_asset_count: 6776476714006962122 - openapiv3_tool_count: 174755565363657734 - status: Vitae exercitationem non aut. - user_id: Itaque facilis. - - created_at: "1988-07-26T22:57:27Z" - functions_asset_count: 3363887023128515012 - functions_tool_count: 4015648503502208550 + - created_at: "1981-08-07T02:48:32Z" + functions_asset_count: 119286388606153277 + functions_tool_count: 7400311089740729027 id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - openapiv3_asset_count: 6776476714006962122 - openapiv3_tool_count: 174755565363657734 - status: Vitae exercitationem non aut. - user_id: Itaque facilis. - - created_at: "1988-07-26T22:57:27Z" - functions_asset_count: 3363887023128515012 - functions_tool_count: 4015648503502208550 + openapiv3_asset_count: 3987120072830406976 + openapiv3_tool_count: 6376994446366840476 + status: Consequatur recusandae non tenetur rem. + user_id: Accusamus quo reiciendis aut qui qui animi. + - created_at: "1981-08-07T02:48:32Z" + functions_asset_count: 119286388606153277 + functions_tool_count: 7400311089740729027 id: bc5f4a555e933e6861d12edba4c2d87ef6caf8e6 - openapiv3_asset_count: 6776476714006962122 - openapiv3_tool_count: 174755565363657734 - status: Vitae exercitationem non aut. - user_id: Itaque facilis. + openapiv3_asset_count: 3987120072830406976 + openapiv3_tool_count: 6376994446366840476 + status: Consequatur recusandae non tenetur rem. + user_id: Accusamus quo reiciendis aut qui qui animi. next_cursor: 01jp3f054qc02gbcmpp0qmyzed required: - items @@ -25452,183 +25523,93 @@ definitions: items: $ref: '#/definitions/Environment' example: - - created_at: "2013-08-21T08:10:57Z" - description: Soluta qui reiciendis ipsa aliquid. + - created_at: "2010-03-24T05:12:00Z" + description: Non repellendus quis tempore at. entries: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - id: Doloremque itaque. - name: Quaerat vel accusantium beatae hic. - organization_id: Tempora repellendus adipisci nobis repellendus consequuntur. - project_id: Dolor reiciendis culpa ipsum. - slug: nln - updated_at: "1986-01-09T05:48:22Z" - - created_at: "2013-08-21T08:10:57Z" - description: Soluta qui reiciendis ipsa aliquid. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + id: Ipsa aliquid incidunt corporis praesentium. + name: Et nam consequatur nostrum et laudantium. + organization_id: Reiciendis ea harum sint. + project_id: Ad optio voluptatem sit ratione. + slug: qgg + updated_at: "1979-01-22T05:33:58Z" + - created_at: "2010-03-24T05:12:00Z" + description: Non repellendus quis tempore at. entries: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - id: Doloremque itaque. - name: Quaerat vel accusantium beatae hic. - organization_id: Tempora repellendus adipisci nobis repellendus consequuntur. - project_id: Dolor reiciendis culpa ipsum. - slug: nln - updated_at: "1986-01-09T05:48:22Z" - - created_at: "2013-08-21T08:10:57Z" - description: Soluta qui reiciendis ipsa aliquid. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + id: Ipsa aliquid incidunt corporis praesentium. + name: Et nam consequatur nostrum et laudantium. + organization_id: Reiciendis ea harum sint. + project_id: Ad optio voluptatem sit ratione. + slug: qgg + updated_at: "1979-01-22T05:33:58Z" + - created_at: "2010-03-24T05:12:00Z" + description: Non repellendus quis tempore at. entries: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - id: Doloremque itaque. - name: Quaerat vel accusantium beatae hic. - organization_id: Tempora repellendus adipisci nobis repellendus consequuntur. - project_id: Dolor reiciendis culpa ipsum. - slug: nln - updated_at: "1986-01-09T05:48:22Z" - - created_at: "2013-08-21T08:10:57Z" - description: Soluta qui reiciendis ipsa aliquid. - entries: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - id: Doloremque itaque. - name: Quaerat vel accusantium beatae hic. - organization_id: Tempora repellendus adipisci nobis repellendus consequuntur. - project_id: Dolor reiciendis culpa ipsum. - slug: nln - updated_at: "1986-01-09T05:48:22Z" + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + id: Ipsa aliquid incidunt corporis praesentium. + name: Et nam consequatur nostrum et laudantium. + organization_id: Reiciendis ea harum sint. + project_id: Ad optio voluptatem sit ratione. + slug: qgg + updated_at: "1979-01-22T05:33:58Z" example: environments: - - created_at: "2013-08-21T08:10:57Z" - description: Soluta qui reiciendis ipsa aliquid. - entries: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - id: Doloremque itaque. - name: Quaerat vel accusantium beatae hic. - organization_id: Tempora repellendus adipisci nobis repellendus consequuntur. - project_id: Dolor reiciendis culpa ipsum. - slug: nln - updated_at: "1986-01-09T05:48:22Z" - - created_at: "2013-08-21T08:10:57Z" - description: Soluta qui reiciendis ipsa aliquid. + - created_at: "2010-03-24T05:12:00Z" + description: Non repellendus quis tempore at. entries: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - id: Doloremque itaque. - name: Quaerat vel accusantium beatae hic. - organization_id: Tempora repellendus adipisci nobis repellendus consequuntur. - project_id: Dolor reiciendis culpa ipsum. - slug: nln - updated_at: "1986-01-09T05:48:22Z" - - created_at: "2013-08-21T08:10:57Z" - description: Soluta qui reiciendis ipsa aliquid. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + id: Ipsa aliquid incidunt corporis praesentium. + name: Et nam consequatur nostrum et laudantium. + organization_id: Reiciendis ea harum sint. + project_id: Ad optio voluptatem sit ratione. + slug: qgg + updated_at: "1979-01-22T05:33:58Z" + - created_at: "2010-03-24T05:12:00Z" + description: Non repellendus quis tempore at. entries: - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - - created_at: "1978-06-06T14:13:47Z" - name: Atque accusamus illum aut. - updated_at: "1981-03-07T05:10:18Z" - value: Voluptas aut culpa nobis fuga quibusdam. - id: Doloremque itaque. - name: Quaerat vel accusantium beatae hic. - organization_id: Tempora repellendus adipisci nobis repellendus consequuntur. - project_id: Dolor reiciendis culpa ipsum. - slug: nln - updated_at: "1986-01-09T05:48:22Z" + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + - created_at: "1982-12-28T10:29:24Z" + name: Amet doloremque iste temporibus omnis sequi. + updated_at: "2005-02-03T00:23:45Z" + value: Quam aut qui amet ipsam voluptates id. + id: Ipsa aliquid incidunt corporis praesentium. + name: Et nam consequatur nostrum et laudantium. + organization_id: Reiciendis ea harum sint. + project_id: Ad optio voluptatem sit ratione. + slug: qgg + updated_at: "1979-01-22T05:33:58Z" required: - environments ListIntegrationsResult: @@ -25641,120 +25622,116 @@ definitions: $ref: '#/definitions/IntegrationEntry' description: List of available third-party integrations example: - - package_id: Non rem exercitationem inventore enim consequatur. - package_image_asset_id: Nihil vel. + - package_id: Qui explicabo. + package_image_asset_id: Sint possimus dolore. package_keywords: - - Assumenda sit cumque. - - Molestiae in harum. - package_name: Saepe dolores neque est sed inventore dolorum. - package_summary: Molestiae iure veniam. - package_title: Quae asperiores. - package_url: Error dolorum quis sed harum voluptatem perspiciatis. + - At doloribus quis dolore eos corporis. + - Ut deleniti alias facilis voluptatibus. + - Nam sunt a eius vero voluptate. + - Quis repellendus libero. + package_name: Beatae perspiciatis. + package_summary: Veniam cum facere reprehenderit. + package_title: Ut distinctio labore. + package_url: In iure. tool_names: - - Repellendus libero rerum sint. - - Dolore recusandae amet qui illum ea in. - version: Debitis veritatis aliquam porro consequuntur provident voluptatem. - version_created_at: "2001-01-16T11:07:39Z" - - package_id: Non rem exercitationem inventore enim consequatur. - package_image_asset_id: Nihil vel. + - Ab ullam architecto saepe et voluptas amet. + - Odit consectetur aut. + - Enim asperiores dolore blanditiis amet. + - Et ex cum quas maiores esse perspiciatis. + version: Amet qui illum. + version_created_at: "1992-04-30T06:25:58Z" + - package_id: Qui explicabo. + package_image_asset_id: Sint possimus dolore. package_keywords: - - Assumenda sit cumque. - - Molestiae in harum. - package_name: Saepe dolores neque est sed inventore dolorum. - package_summary: Molestiae iure veniam. - package_title: Quae asperiores. - package_url: Error dolorum quis sed harum voluptatem perspiciatis. + - At doloribus quis dolore eos corporis. + - Ut deleniti alias facilis voluptatibus. + - Nam sunt a eius vero voluptate. + - Quis repellendus libero. + package_name: Beatae perspiciatis. + package_summary: Veniam cum facere reprehenderit. + package_title: Ut distinctio labore. + package_url: In iure. tool_names: - - Repellendus libero rerum sint. - - Dolore recusandae amet qui illum ea in. - version: Debitis veritatis aliquam porro consequuntur provident voluptatem. - version_created_at: "2001-01-16T11:07:39Z" - - package_id: Non rem exercitationem inventore enim consequatur. - package_image_asset_id: Nihil vel. + - Ab ullam architecto saepe et voluptas amet. + - Odit consectetur aut. + - Enim asperiores dolore blanditiis amet. + - Et ex cum quas maiores esse perspiciatis. + version: Amet qui illum. + version_created_at: "1992-04-30T06:25:58Z" + - package_id: Qui explicabo. + package_image_asset_id: Sint possimus dolore. package_keywords: - - Assumenda sit cumque. - - Molestiae in harum. - package_name: Saepe dolores neque est sed inventore dolorum. - package_summary: Molestiae iure veniam. - package_title: Quae asperiores. - package_url: Error dolorum quis sed harum voluptatem perspiciatis. + - At doloribus quis dolore eos corporis. + - Ut deleniti alias facilis voluptatibus. + - Nam sunt a eius vero voluptate. + - Quis repellendus libero. + package_name: Beatae perspiciatis. + package_summary: Veniam cum facere reprehenderit. + package_title: Ut distinctio labore. + package_url: In iure. tool_names: - - Repellendus libero rerum sint. - - Dolore recusandae amet qui illum ea in. - version: Debitis veritatis aliquam porro consequuntur provident voluptatem. - version_created_at: "2001-01-16T11:07:39Z" - - package_id: Non rem exercitationem inventore enim consequatur. - package_image_asset_id: Nihil vel. - package_keywords: - - Assumenda sit cumque. - - Molestiae in harum. - package_name: Saepe dolores neque est sed inventore dolorum. - package_summary: Molestiae iure veniam. - package_title: Quae asperiores. - package_url: Error dolorum quis sed harum voluptatem perspiciatis. - tool_names: - - Repellendus libero rerum sint. - - Dolore recusandae amet qui illum ea in. - version: Debitis veritatis aliquam porro consequuntur provident voluptatem. - version_created_at: "2001-01-16T11:07:39Z" + - Ab ullam architecto saepe et voluptas amet. + - Odit consectetur aut. + - Enim asperiores dolore blanditiis amet. + - Et ex cum quas maiores esse perspiciatis. + version: Amet qui illum. + version_created_at: "1992-04-30T06:25:58Z" example: integrations: - - package_id: Non rem exercitationem inventore enim consequatur. - package_image_asset_id: Nihil vel. - package_keywords: - - Assumenda sit cumque. - - Molestiae in harum. - package_name: Saepe dolores neque est sed inventore dolorum. - package_summary: Molestiae iure veniam. - package_title: Quae asperiores. - package_url: Error dolorum quis sed harum voluptatem perspiciatis. - tool_names: - - Repellendus libero rerum sint. - - Dolore recusandae amet qui illum ea in. - version: Debitis veritatis aliquam porro consequuntur provident voluptatem. - version_created_at: "2001-01-16T11:07:39Z" - - package_id: Non rem exercitationem inventore enim consequatur. - package_image_asset_id: Nihil vel. + - package_id: Qui explicabo. + package_image_asset_id: Sint possimus dolore. package_keywords: - - Assumenda sit cumque. - - Molestiae in harum. - package_name: Saepe dolores neque est sed inventore dolorum. - package_summary: Molestiae iure veniam. - package_title: Quae asperiores. - package_url: Error dolorum quis sed harum voluptatem perspiciatis. + - At doloribus quis dolore eos corporis. + - Ut deleniti alias facilis voluptatibus. + - Nam sunt a eius vero voluptate. + - Quis repellendus libero. + package_name: Beatae perspiciatis. + package_summary: Veniam cum facere reprehenderit. + package_title: Ut distinctio labore. + package_url: In iure. tool_names: - - Repellendus libero rerum sint. - - Dolore recusandae amet qui illum ea in. - version: Debitis veritatis aliquam porro consequuntur provident voluptatem. - version_created_at: "2001-01-16T11:07:39Z" - - package_id: Non rem exercitationem inventore enim consequatur. - package_image_asset_id: Nihil vel. + - Ab ullam architecto saepe et voluptas amet. + - Odit consectetur aut. + - Enim asperiores dolore blanditiis amet. + - Et ex cum quas maiores esse perspiciatis. + version: Amet qui illum. + version_created_at: "1992-04-30T06:25:58Z" + - package_id: Qui explicabo. + package_image_asset_id: Sint possimus dolore. package_keywords: - - Assumenda sit cumque. - - Molestiae in harum. - package_name: Saepe dolores neque est sed inventore dolorum. - package_summary: Molestiae iure veniam. - package_title: Quae asperiores. - package_url: Error dolorum quis sed harum voluptatem perspiciatis. + - At doloribus quis dolore eos corporis. + - Ut deleniti alias facilis voluptatibus. + - Nam sunt a eius vero voluptate. + - Quis repellendus libero. + package_name: Beatae perspiciatis. + package_summary: Veniam cum facere reprehenderit. + package_title: Ut distinctio labore. + package_url: In iure. tool_names: - - Repellendus libero rerum sint. - - Dolore recusandae amet qui illum ea in. - version: Debitis veritatis aliquam porro consequuntur provident voluptatem. - version_created_at: "2001-01-16T11:07:39Z" - - package_id: Non rem exercitationem inventore enim consequatur. - package_image_asset_id: Nihil vel. + - Ab ullam architecto saepe et voluptas amet. + - Odit consectetur aut. + - Enim asperiores dolore blanditiis amet. + - Et ex cum quas maiores esse perspiciatis. + version: Amet qui illum. + version_created_at: "1992-04-30T06:25:58Z" + - package_id: Qui explicabo. + package_image_asset_id: Sint possimus dolore. package_keywords: - - Assumenda sit cumque. - - Molestiae in harum. - package_name: Saepe dolores neque est sed inventore dolorum. - package_summary: Molestiae iure veniam. - package_title: Quae asperiores. - package_url: Error dolorum quis sed harum voluptatem perspiciatis. + - At doloribus quis dolore eos corporis. + - Ut deleniti alias facilis voluptatibus. + - Nam sunt a eius vero voluptate. + - Quis repellendus libero. + package_name: Beatae perspiciatis. + package_summary: Veniam cum facere reprehenderit. + package_title: Ut distinctio labore. + package_url: In iure. tool_names: - - Repellendus libero rerum sint. - - Dolore recusandae amet qui illum ea in. - version: Debitis veritatis aliquam porro consequuntur provident voluptatem. - version_created_at: "2001-01-16T11:07:39Z" + - Ab ullam architecto saepe et voluptas amet. + - Odit consectetur aut. + - Enim asperiores dolore blanditiis amet. + - Et ex cum quas maiores esse perspiciatis. + version: Amet qui illum. + version_created_at: "1992-04-30T06:25:58Z" ListKeysResult: title: ListKeysResult type: object @@ -25764,86 +25741,73 @@ definitions: items: $ref: '#/definitions/Key' example: - - created_at: "2014-12-23T21:21:47Z" - created_by_user_id: Et nihil enim molestiae consequuntur officiis sed. - id: Ut tempora. - key: Omnis ut itaque alias. - key_prefix: Et sapiente temporibus possimus. - name: Sit quis. - organization_id: Veniam esse soluta beatae qui esse. - project_id: Officiis quis aut minus sapiente. + - created_at: "2011-06-18T15:46:47Z" + created_by_user_id: Ad voluptatibus consequatur reiciendis voluptatum eveniet. + id: Officiis eius suscipit magni voluptatem in. + key: Adipisci consequatur provident deleniti consectetur. + key_prefix: Quod soluta voluptatibus cum. + name: Et enim deserunt et. + organization_id: Illo rerum voluptatum. + project_id: Aliquid ad. scopes: - - Aperiam reprehenderit asperiores culpa voluptate qui molestiae. - - Est quia esse quos voluptas dolores sit. - - Enim corrupti. - updated_at: "2011-06-18T15:46:47Z" - - created_at: "2014-12-23T21:21:47Z" - created_by_user_id: Et nihil enim molestiae consequuntur officiis sed. - id: Ut tempora. - key: Omnis ut itaque alias. - key_prefix: Et sapiente temporibus possimus. - name: Sit quis. - organization_id: Veniam esse soluta beatae qui esse. - project_id: Officiis quis aut minus sapiente. + - Aut veniam non quod voluptatem illo ut. + - Soluta aperiam qui quidem qui animi. + - Officia beatae voluptate. + updated_at: "1983-04-24T21:27:28Z" + - created_at: "2011-06-18T15:46:47Z" + created_by_user_id: Ad voluptatibus consequatur reiciendis voluptatum eveniet. + id: Officiis eius suscipit magni voluptatem in. + key: Adipisci consequatur provident deleniti consectetur. + key_prefix: Quod soluta voluptatibus cum. + name: Et enim deserunt et. + organization_id: Illo rerum voluptatum. + project_id: Aliquid ad. scopes: - - Aperiam reprehenderit asperiores culpa voluptate qui molestiae. - - Est quia esse quos voluptas dolores sit. - - Enim corrupti. - updated_at: "2011-06-18T15:46:47Z" + - Aut veniam non quod voluptatem illo ut. + - Soluta aperiam qui quidem qui animi. + - Officia beatae voluptate. + updated_at: "1983-04-24T21:27:28Z" example: keys: - - created_at: "2014-12-23T21:21:47Z" - created_by_user_id: Et nihil enim molestiae consequuntur officiis sed. - id: Ut tempora. - key: Omnis ut itaque alias. - key_prefix: Et sapiente temporibus possimus. - name: Sit quis. - organization_id: Veniam esse soluta beatae qui esse. - project_id: Officiis quis aut minus sapiente. + - created_at: "2011-06-18T15:46:47Z" + created_by_user_id: Ad voluptatibus consequatur reiciendis voluptatum eveniet. + id: Officiis eius suscipit magni voluptatem in. + key: Adipisci consequatur provident deleniti consectetur. + key_prefix: Quod soluta voluptatibus cum. + name: Et enim deserunt et. + organization_id: Illo rerum voluptatum. + project_id: Aliquid ad. scopes: - - Aperiam reprehenderit asperiores culpa voluptate qui molestiae. - - Est quia esse quos voluptas dolores sit. - - Enim corrupti. - updated_at: "2011-06-18T15:46:47Z" - - created_at: "2014-12-23T21:21:47Z" - created_by_user_id: Et nihil enim molestiae consequuntur officiis sed. - id: Ut tempora. - key: Omnis ut itaque alias. - key_prefix: Et sapiente temporibus possimus. - name: Sit quis. - organization_id: Veniam esse soluta beatae qui esse. - project_id: Officiis quis aut minus sapiente. + - Aut veniam non quod voluptatem illo ut. + - Soluta aperiam qui quidem qui animi. + - Officia beatae voluptate. + updated_at: "1983-04-24T21:27:28Z" + - created_at: "2011-06-18T15:46:47Z" + created_by_user_id: Ad voluptatibus consequatur reiciendis voluptatum eveniet. + id: Officiis eius suscipit magni voluptatem in. + key: Adipisci consequatur provident deleniti consectetur. + key_prefix: Quod soluta voluptatibus cum. + name: Et enim deserunt et. + organization_id: Illo rerum voluptatum. + project_id: Aliquid ad. scopes: - - Aperiam reprehenderit asperiores culpa voluptate qui molestiae. - - Est quia esse quos voluptas dolores sit. - - Enim corrupti. - updated_at: "2011-06-18T15:46:47Z" - - created_at: "2014-12-23T21:21:47Z" - created_by_user_id: Et nihil enim molestiae consequuntur officiis sed. - id: Ut tempora. - key: Omnis ut itaque alias. - key_prefix: Et sapiente temporibus possimus. - name: Sit quis. - organization_id: Veniam esse soluta beatae qui esse. - project_id: Officiis quis aut minus sapiente. + - Aut veniam non quod voluptatem illo ut. + - Soluta aperiam qui quidem qui animi. + - Officia beatae voluptate. + updated_at: "1983-04-24T21:27:28Z" + - created_at: "2011-06-18T15:46:47Z" + created_by_user_id: Ad voluptatibus consequatur reiciendis voluptatum eveniet. + id: Officiis eius suscipit magni voluptatem in. + key: Adipisci consequatur provident deleniti consectetur. + key_prefix: Quod soluta voluptatibus cum. + name: Et enim deserunt et. + organization_id: Illo rerum voluptatum. + project_id: Aliquid ad. scopes: - - Aperiam reprehenderit asperiores culpa voluptate qui molestiae. - - Est quia esse quos voluptas dolores sit. - - Enim corrupti. - updated_at: "2011-06-18T15:46:47Z" - - created_at: "2014-12-23T21:21:47Z" - created_by_user_id: Et nihil enim molestiae consequuntur officiis sed. - id: Ut tempora. - key: Omnis ut itaque alias. - key_prefix: Et sapiente temporibus possimus. - name: Sit quis. - organization_id: Veniam esse soluta beatae qui esse. - project_id: Officiis quis aut minus sapiente. - scopes: - - Aperiam reprehenderit asperiores culpa voluptate qui molestiae. - - Est quia esse quos voluptas dolores sit. - - Enim corrupti. - updated_at: "2011-06-18T15:46:47Z" + - Aut veniam non quod voluptatem illo ut. + - Soluta aperiam qui quidem qui animi. + - Officia beatae voluptate. + updated_at: "1983-04-24T21:27:28Z" required: - keys ListPackagesResult: @@ -25856,144 +25820,110 @@ definitions: $ref: '#/definitions/Package' description: The list of packages example: - - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + - created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. - - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. + - created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. - - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. + - created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. - - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. + - created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. example: packages: - - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. - keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. - - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. - keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. - - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + - created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. - - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. + - created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. required: - packages ListProjectsResult: @@ -26006,26 +25936,26 @@ definitions: $ref: '#/definitions/ProjectEntry' description: The list of projects example: - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p example: projects: - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p required: - projects ListPromptTemplatesResult: @@ -26039,247 +25969,252 @@ definitions: description: The created prompt template example: - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. example: templates: - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - templates ListToolsResult: @@ -26289,7 +26224,7 @@ definitions: next_cursor: type: string description: The cursor to fetch results from - example: Id deleniti vero quibusdam est nemo. + example: Itaque rerum quo quae autem. tools: type: array items: @@ -26298,673 +26233,927 @@ definitions: example: - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. example: - next_cursor: Nobis odio at repellendus fugiat totam. + next_cursor: Rerum ipsam suscipit sit aut voluptates. tools: - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + prompt_template: + canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. + engine: mustache + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. + tools_hint: + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - http_tool_definition: + canonical: + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. + tags: + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. + response_filter: + content_types: + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. + status_codes: + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. + tags: + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - http_tool_definition: + canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. + response_filter: + content_types: + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. + status_codes: + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. + tags: + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + prompt_template: + canonical: + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. + tags: + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. + engine: mustache + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. + tools_hint: + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - tools ListToolsetsResult: @@ -26977,848 +27166,1051 @@ definitions: $ref: '#/definitions/ToolsetEntry' description: The list of toolsets example: - - created_at: "2008-08-24T22:16:28Z" - custom_domain_id: Error quia. - default_environment_slug: dvo - description: Ullam suscipit. - id: Sed earum. - mcp_enabled: true + - created_at: "1982-08-26T20:29:50Z" + custom_domain_id: Pariatur optio porro. + default_environment_slug: v1y + description: Maxime fugiat porro nihil quo. + id: Minus ea minus cupiditate dignissimos repudiandae cumque. + mcp_enabled: false mcp_is_public: true - mcp_slug: 7zf - name: Et aut dolorum. - organization_id: Labore quo quos dolores exercitationem quis est. - project_id: Aut sint aliquid. + mcp_slug: 3ey + name: Ut est dicta aut quo tempora harum. + organization_id: Ut fugiat. + project_id: Et impedit. prompt_templates: - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak security_variables: - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 - - 116 - - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - - 97 - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - slug: xi7 + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + slug: 5x1 tool_urns: - - Impedit dolores ut fugiat voluptas ut. - - Dicta aut. - - Tempora harum. - - Aspernatur asperiores enim repellendus. + - Officia dolores sed est eligendi unde. + - Cupiditate nulla voluptas earum illum dolorum. tools: - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. - type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - updated_at: "1989-05-12T12:09:33Z" - - created_at: "2008-08-24T22:16:28Z" - custom_domain_id: Error quia. - default_environment_slug: dvo - description: Ullam suscipit. - id: Sed earum. - mcp_enabled: true + updated_at: "2000-02-05T13:26:39Z" + - created_at: "1982-08-26T20:29:50Z" + custom_domain_id: Pariatur optio porro. + default_environment_slug: v1y + description: Maxime fugiat porro nihil quo. + id: Minus ea minus cupiditate dignissimos repudiandae cumque. + mcp_enabled: false mcp_is_public: true - mcp_slug: 7zf - name: Et aut dolorum. - organization_id: Labore quo quos dolores exercitationem quis est. - project_id: Aut sint aliquid. + mcp_slug: 3ey + name: Ut est dicta aut quo tempora harum. + organization_id: Ut fugiat. + project_id: Et impedit. prompt_templates: - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak security_variables: - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - - 32 - - 115 - - 105 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 + - 85 + - 116 - 32 - - 113 - - 117 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + server_variables: + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + slug: 5x1 + tool_urns: + - Officia dolores sed est eligendi unde. + - Cupiditate nulla voluptas earum illum dolorum. + tools: + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. + type: prompt + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. + type: prompt + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. + type: prompt + updated_at: "2000-02-05T13:26:39Z" + - created_at: "1982-08-26T20:29:50Z" + custom_domain_id: Pariatur optio porro. + default_environment_slug: v1y + description: Maxime fugiat porro nihil quo. + id: Minus ea minus cupiditate dignissimos repudiandae cumque. + mcp_enabled: false + mcp_is_public: true + mcp_slug: 3ey + name: Ut est dicta aut quo tempora harum. + organization_id: Ut fugiat. + project_id: Et impedit. + prompt_templates: + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + security_variables: + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 97 - - 108 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - - 97 - 115 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 + - 116 - 32 - - 113 - - 117 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - - 32 - - 115 - - 105 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - slug: xi7 + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + slug: 5x1 tool_urns: - - Impedit dolores ut fugiat voluptas ut. - - Dicta aut. - - Tempora harum. - - Aspernatur asperiores enim repellendus. + - Officia dolores sed est eligendi unde. + - Cupiditate nulla voluptas earum illum dolorum. tools: - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. - type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - updated_at: "1989-05-12T12:09:33Z" + updated_at: "2000-02-05T13:26:39Z" example: toolsets: - - created_at: "2008-08-24T22:16:28Z" - custom_domain_id: Error quia. - default_environment_slug: dvo - description: Ullam suscipit. - id: Sed earum. - mcp_enabled: true + - created_at: "1982-08-26T20:29:50Z" + custom_domain_id: Pariatur optio porro. + default_environment_slug: v1y + description: Maxime fugiat porro nihil quo. + id: Minus ea minus cupiditate dignissimos repudiandae cumque. + mcp_enabled: false mcp_is_public: true - mcp_slug: 7zf - name: Et aut dolorum. - organization_id: Labore quo quos dolores exercitationem quis est. - project_id: Aut sint aliquid. + mcp_slug: 3ey + name: Ut est dicta aut quo tempora harum. + organization_id: Ut fugiat. + project_id: Et impedit. prompt_templates: - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak security_variables: - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - - 97 - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 - - 116 - - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - slug: xi7 + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + slug: 5x1 tool_urns: - - Impedit dolores ut fugiat voluptas ut. - - Dicta aut. - - Tempora harum. - - Aspernatur asperiores enim repellendus. + - Officia dolores sed est eligendi unde. + - Cupiditate nulla voluptas earum illum dolorum. tools: - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. - type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - updated_at: "1989-05-12T12:09:33Z" - - created_at: "2008-08-24T22:16:28Z" - custom_domain_id: Error quia. - default_environment_slug: dvo - description: Ullam suscipit. - id: Sed earum. - mcp_enabled: true + updated_at: "2000-02-05T13:26:39Z" + - created_at: "1982-08-26T20:29:50Z" + custom_domain_id: Pariatur optio porro. + default_environment_slug: v1y + description: Maxime fugiat porro nihil quo. + id: Minus ea minus cupiditate dignissimos repudiandae cumque. + mcp_enabled: false mcp_is_public: true - mcp_slug: 7zf - name: Et aut dolorum. - organization_id: Labore quo quos dolores exercitationem quis est. - project_id: Aut sint aliquid. + mcp_slug: 3ey + name: Ut est dicta aut quo tempora harum. + organization_id: Ut fugiat. + project_id: Et impedit. prompt_templates: - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak security_variables: - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 - - 116 - - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - - 97 - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - slug: xi7 + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + slug: 5x1 tool_urns: - - Impedit dolores ut fugiat voluptas ut. - - Dicta aut. - - Tempora harum. - - Aspernatur asperiores enim repellendus. + - Officia dolores sed est eligendi unde. + - Cupiditate nulla voluptas earum illum dolorum. tools: - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. - type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - updated_at: "1989-05-12T12:09:33Z" - - created_at: "2008-08-24T22:16:28Z" - custom_domain_id: Error quia. - default_environment_slug: dvo - description: Ullam suscipit. - id: Sed earum. - mcp_enabled: true + updated_at: "2000-02-05T13:26:39Z" + - created_at: "1982-08-26T20:29:50Z" + custom_domain_id: Pariatur optio porro. + default_environment_slug: v1y + description: Maxime fugiat porro nihil quo. + id: Minus ea minus cupiditate dignissimos repudiandae cumque. + mcp_enabled: false mcp_is_public: true - mcp_slug: 7zf - name: Et aut dolorum. - organization_id: Labore quo quos dolores exercitationem quis est. - project_id: Aut sint aliquid. + mcp_slug: 3ey + name: Ut est dicta aut quo tempora harum. + organization_id: Ut fugiat. + project_id: Et impedit. prompt_templates: - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak security_variables: - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - - 97 - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 + - 85 + - 116 - 32 - - 113 - - 117 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + server_variables: + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + slug: 5x1 + tool_urns: + - Officia dolores sed est eligendi unde. + - Cupiditate nulla voluptas earum illum dolorum. + tools: + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. + type: prompt + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. + type: prompt + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. + type: prompt + updated_at: "2000-02-05T13:26:39Z" + - created_at: "1982-08-26T20:29:50Z" + custom_domain_id: Pariatur optio porro. + default_environment_slug: v1y + description: Maxime fugiat porro nihil quo. + id: Minus ea minus cupiditate dignissimos repudiandae cumque. + mcp_enabled: false + mcp_is_public: true + mcp_slug: 3ey + name: Ut est dicta aut quo tempora harum. + organization_id: Ut fugiat. + project_id: Et impedit. + prompt_templates: + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + security_variables: + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 97 - - 108 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - - 97 - 115 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 + - 116 - 32 - - 113 - - 117 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - - 32 - - 115 - - 105 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - slug: xi7 + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + slug: 5x1 tool_urns: - - Impedit dolores ut fugiat voluptas ut. - - Dicta aut. - - Tempora harum. - - Aspernatur asperiores enim repellendus. + - Officia dolores sed est eligendi unde. + - Cupiditate nulla voluptas earum illum dolorum. tools: - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. - type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - updated_at: "1989-05-12T12:09:33Z" + updated_at: "2000-02-05T13:26:39Z" required: - toolsets ListVariationsResult: @@ -27830,106 +28222,98 @@ definitions: items: $ref: '#/definitions/ToolVariation' example: - - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + - confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. example: variations: - - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + - confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. - tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. - tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - variations ListVersionsResult: @@ -27943,74 +28327,62 @@ definitions: items: $ref: '#/definitions/PackageVersion' example: - - created_at: "2009-10-15T11:07:34Z" - deployment_id: Et vel sunt. - id: Distinctio voluptas omnis quae enim et dicta. - package_id: Qui amet dolorem vel laboriosam ipsa consequuntur. - semver: Expedita repellat sed dolores perferendis. - visibility: Cum dolorum. - - created_at: "2009-10-15T11:07:34Z" - deployment_id: Et vel sunt. - id: Distinctio voluptas omnis quae enim et dicta. - package_id: Qui amet dolorem vel laboriosam ipsa consequuntur. - semver: Expedita repellat sed dolores perferendis. - visibility: Cum dolorum. - - created_at: "2009-10-15T11:07:34Z" - deployment_id: Et vel sunt. - id: Distinctio voluptas omnis quae enim et dicta. - package_id: Qui amet dolorem vel laboriosam ipsa consequuntur. - semver: Expedita repellat sed dolores perferendis. - visibility: Cum dolorum. - - created_at: "2009-10-15T11:07:34Z" - deployment_id: Et vel sunt. - id: Distinctio voluptas omnis quae enim et dicta. - package_id: Qui amet dolorem vel laboriosam ipsa consequuntur. - semver: Expedita repellat sed dolores perferendis. - visibility: Cum dolorum. + - created_at: "1995-01-02T23:55:32Z" + deployment_id: Quidem architecto ut commodi natus. + id: Ullam ut sapiente sapiente quia. + package_id: Non earum. + semver: Debitis quia sit quod omnis. + visibility: Delectus repudiandae ea. + - created_at: "1995-01-02T23:55:32Z" + deployment_id: Quidem architecto ut commodi natus. + id: Ullam ut sapiente sapiente quia. + package_id: Non earum. + semver: Debitis quia sit quod omnis. + visibility: Delectus repudiandae ea. + - created_at: "1995-01-02T23:55:32Z" + deployment_id: Quidem architecto ut commodi natus. + id: Ullam ut sapiente sapiente quia. + package_id: Non earum. + semver: Debitis quia sit quod omnis. + visibility: Delectus repudiandae ea. example: package: - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. versions: - - created_at: "2009-10-15T11:07:34Z" - deployment_id: Et vel sunt. - id: Distinctio voluptas omnis quae enim et dicta. - package_id: Qui amet dolorem vel laboriosam ipsa consequuntur. - semver: Expedita repellat sed dolores perferendis. - visibility: Cum dolorum. - - created_at: "2009-10-15T11:07:34Z" - deployment_id: Et vel sunt. - id: Distinctio voluptas omnis quae enim et dicta. - package_id: Qui amet dolorem vel laboriosam ipsa consequuntur. - semver: Expedita repellat sed dolores perferendis. - visibility: Cum dolorum. - - created_at: "2009-10-15T11:07:34Z" - deployment_id: Et vel sunt. - id: Distinctio voluptas omnis quae enim et dicta. - package_id: Qui amet dolorem vel laboriosam ipsa consequuntur. - semver: Expedita repellat sed dolores perferendis. - visibility: Cum dolorum. - - created_at: "2009-10-15T11:07:34Z" - deployment_id: Et vel sunt. - id: Distinctio voluptas omnis quae enim et dicta. - package_id: Qui amet dolorem vel laboriosam ipsa consequuntur. - semver: Expedita repellat sed dolores perferendis. - visibility: Cum dolorum. + - created_at: "1995-01-02T23:55:32Z" + deployment_id: Quidem architecto ut commodi natus. + id: Ullam ut sapiente sapiente quia. + package_id: Non earum. + semver: Debitis quia sit quod omnis. + visibility: Delectus repudiandae ea. + - created_at: "1995-01-02T23:55:32Z" + deployment_id: Quidem architecto ut commodi natus. + id: Ullam ut sapiente sapiente quia. + package_id: Non earum. + semver: Debitis quia sit quod omnis. + visibility: Delectus repudiandae ea. + - created_at: "1995-01-02T23:55:32Z" + deployment_id: Quidem architecto ut commodi natus. + id: Ullam ut sapiente sapiente quia. + package_id: Non earum. + semver: Debitis quia sit quod omnis. + visibility: Delectus repudiandae ea. required: - package - versions @@ -28021,40 +28393,40 @@ definitions: created_at: type: string description: When the metadata entry was created - example: "2007-11-28T05:59:39Z" + example: "1991-10-17T12:42:28Z" format: date-time external_documentation_url: type: string description: A link to external documentation for the MCP install page - example: http://strosingutkowski.info/monica_towne + example: http://kundenitzsche.com/pattie format: uri id: type: string description: The ID of the metadata record - example: Tempora aliquid. + example: Ea cupiditate aliquam sit. logo_asset_id: type: string description: The asset ID for the MCP install page logo - example: 65f59572-e58e-4eca-9361-7a090ba6e9f4 + example: 10482823-de18-4160-a768-1adf22b2514a format: uuid toolset_id: type: string description: The toolset associated with this install page metadata - example: 81069815-3bbb-414c-8f9a-82b0477cdc41 + example: c686efe2-6dbf-47c1-9544-3d0cb3a302db format: uuid updated_at: type: string description: When the metadata entry was last updated - example: "1995-05-11T15:27:46Z" + example: "2009-02-15T04:41:25Z" format: date-time description: Metadata used to configure the MCP install page. example: - created_at: "2015-07-02T13:51:08Z" - external_documentation_url: http://brekkekeeling.name/lew.olson - id: Blanditiis est fugit laudantium consequuntur quasi repudiandae. - logo_asset_id: 17395669-8363-4d98-bced-51a7d93a014c - toolset_id: 08a31f63-4aa2-4d67-93b2-f555d07f70f6 - updated_at: "1971-11-21T13:18:15Z" + created_at: "1970-11-11T03:36:50Z" + external_documentation_url: http://gleason.info/mackenzie + id: Aut quaerat ipsum. + logo_asset_id: 8d5796fc-4ad5-4398-8f0d-02ab4cfeab7e + toolset_id: 3c66d156-8b35-4443-8f94-be6cfd6c8b10 + updated_at: "1999-01-30T02:07:19Z" required: - id - toolset_id @@ -28067,7 +28439,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -28094,8 +28466,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -28126,14 +28498,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -28180,7 +28552,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -28196,7 +28568,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -28212,19 +28584,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -28239,7 +28611,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -28262,12 +28634,12 @@ definitions: example: false description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -28310,7 +28682,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -28341,18 +28713,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -28369,12 +28741,12 @@ definitions: $ref: '#/definitions/McpMetadata' example: metadata: - created_at: "1995-11-23T22:27:02Z" - external_documentation_url: http://tremblay.org/richmond - id: Consectetur consequatur vitae quia nemo facere. - logo_asset_id: a31ba668-938c-4703-98c7-e530be314a98 - toolset_id: 325358a1-b81f-49ba-b3ce-4a457fa65508 - updated_at: "1982-03-13T02:59:02Z" + created_at: "1989-12-24T13:24:58Z" + external_documentation_url: http://witting.biz/lisa.hauck + id: Magnam eius perferendis veniam. + logo_asset_id: f3e977e7-2ecf-4e3b-8636-8f0b3dc7560f + toolset_id: f983cab3-3d5a-4df4-ba39-a71f555aa8e7 + updated_at: "1980-10-11T10:14:48Z" McpMetadataGetMcpMetadataUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -28382,7 +28754,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -28398,14 +28770,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -28441,7 +28813,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -28453,7 +28825,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -28488,14 +28860,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -28511,7 +28883,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -28531,15 +28903,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -28570,11 +28942,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: false @@ -28597,7 +28969,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -28617,7 +28989,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: false @@ -28656,19 +29028,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -28699,19 +29071,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -28746,15 +29118,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -28785,7 +29157,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -28796,8 +29168,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -28812,21 +29184,21 @@ definitions: external_documentation_url: type: string description: A link to external documentation for the MCP install page - example: Nesciunt aut sit. + example: Sed tenetur. logo_asset_id: type: string description: The asset ID for the MCP install page logo - example: Quia sed officia inventore exercitationem non. + example: Veritatis sapiente explicabo consequatur voluptatum. toolset_slug: type: string description: The slug of the toolset associated with this install page metadata - example: nfq + example: zhz pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 example: - external_documentation_url: Qui omnis voluptatem veniam molestiae earum. - logo_asset_id: Impedit molestias sequi. - toolset_slug: 69d + external_documentation_url: Itaque consequatur ea. + logo_asset_id: Numquam qui maiores cupiditate. + toolset_slug: ewb required: - toolset_slug McpMetadataSetMcpMetadataUnauthorizedResponseBody: @@ -28856,7 +29228,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: fault: true @@ -28899,7 +29271,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: false @@ -28907,7 +29279,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -28922,7 +29294,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -28938,11 +29310,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: false @@ -28950,7 +29322,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -28965,80 +29337,80 @@ definitions: authorization_endpoint: type: string description: The authorization endpoint URL - example: Tempore atque sapiente dolores suscipit temporibus. + example: Aut et et sit voluptatem in. created_at: type: string description: When the OAuth proxy provider was created. - example: "1981-01-10T22:40:02Z" + example: "2012-08-20T05:41:00Z" format: date-time grant_types_supported: type: array items: type: string - example: Accusamus consequatur voluptatem quam ut nihil. + example: Deleniti ipsam facilis vero quos animi fugiat. description: The grant types supported by this provider example: - - Natus voluptas eos ut. - - Dolorum quo. - - Rerum officia dolorum consequatur quod. - - Officiis repellendus cumque consequuntur in similique reiciendis. + - Ut totam libero et dolore. + - Et error sapiente sapiente qui voluptate. id: type: string description: The ID of the OAuth proxy provider - example: Eius laudantium. + example: Repellendus cumque consequuntur. scopes_supported: type: array items: type: string - example: Molestias perferendis ex ducimus natus tempora explicabo. + example: Nulla vero nihil. description: The OAuth scopes supported by this provider example: - - Sit maiores quia rerum. - - Occaecati facilis iusto mollitia consequuntur quidem maxime. + - Repellat eos sit aut. + - Iure molestiae. + - Rerum eveniet provident ipsa impedit sed id. slug: type: string description: The slug of the OAuth proxy provider - example: p9z + example: pml pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 token_endpoint: type: string description: The token endpoint URL - example: Voluptatem rerum dolores. + example: Facilis odio ipsam. token_endpoint_auth_methods_supported: type: array items: type: string - example: Unde aut et et sit. + example: Est officiis recusandae pariatur et qui esse. description: The token endpoint auth methods supported by this provider example: - - Sed facilis odio ipsam. - - Nulla vero nihil. + - Provident soluta ut. + - Aut reiciendis enim et omnis laboriosam error. + - Odit voluptas labore saepe deleniti quia aut. + - Rerum rem dignissimos. updated_at: type: string description: When the OAuth proxy provider was last updated. - example: "2010-06-25T15:54:40Z" + example: "1987-08-09T13:03:49Z" format: date-time example: - authorization_endpoint: Sit et necessitatibus ea nesciunt et corporis. - created_at: "1985-03-19T08:42:48Z" + authorization_endpoint: Nulla itaque quo iure velit commodi. + created_at: "2002-02-23T12:59:17Z" grant_types_supported: - - Iure ex sed occaecati quibusdam sunt omnis. - - Nisi libero dolores id quia. - - Quisquam eaque totam at rerum et voluptas. - - Voluptatem quis. - id: Qui fuga consequuntur eos voluptatem non atque. + - Neque non est. + - Ut reprehenderit non placeat non reiciendis. + - Tempora qui id ut veritatis et quas. + id: Quia rerum. scopes_supported: - - Veritatis nulla nemo consequatur nihil tempore. - - Saepe laborum quidem consectetur neque. - slug: 0qb - token_endpoint: Magnam sit ex molestiae dolorum. + - Soluta dolores quisquam asperiores harum hic. + - Hic vitae. + slug: php + token_endpoint: Quasi blanditiis repudiandae. token_endpoint_auth_methods_supported: - - Ut et vel. - - Vero quia rerum sint. - - Hic aut modi. - - Itaque quo. - updated_at: "2015-06-29T10:15:55Z" + - Est qui saepe. + - Corrupti sint dolor quo molestias sint neque. + - Expedita id quia. + - Laborum reprehenderit laboriosam quos eos commodi. + updated_at: "1996-04-30T15:03:50Z" required: - id - slug @@ -29053,145 +29425,136 @@ definitions: created_at: type: string description: When the OAuth proxy server was created. - example: "2009-11-09T00:40:09Z" + example: "1998-09-15T11:04:51Z" format: date-time id: type: string description: The ID of the OAuth proxy server - example: Deleniti sunt totam est. + example: Debitis natus voluptas eos ut qui dolorum. oauth_proxy_providers: type: array items: $ref: '#/definitions/OAuthProxyProvider' description: The OAuth proxy providers for this server example: - - authorization_endpoint: Laudantium est omnis asperiores. - created_at: "1981-01-06T12:18:09Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" grant_types_supported: - - Amet recusandae cum et nesciunt reiciendis. - - Sit vitae provident. - - Dolore vel sunt totam assumenda ab voluptatum. - - Aut quaerat quia sunt quo sed. - id: Ipsam corrupti. + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. scopes_supported: - - Rerum repellat recusandae. - - Non ex. - - Eum neque. - - Magnam non rerum ratione. - slug: vjt - token_endpoint: Et natus et deleniti fugiat. - token_endpoint_auth_methods_supported: - - Recusandae vero temporibus perspiciatis perferendis. - - Ut illum iusto consectetur voluptas porro. - - Nesciunt error sunt. - Et impedit eaque culpa quia est et. - updated_at: "2008-09-17T17:27:28Z" - - authorization_endpoint: Laudantium est omnis asperiores. - created_at: "1981-01-06T12:18:09Z" + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. + token_endpoint_auth_methods_supported: + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" grant_types_supported: - - Amet recusandae cum et nesciunt reiciendis. - - Sit vitae provident. - - Dolore vel sunt totam assumenda ab voluptatum. - - Aut quaerat quia sunt quo sed. - id: Ipsam corrupti. + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. scopes_supported: - - Rerum repellat recusandae. - - Non ex. - - Eum neque. - - Magnam non rerum ratione. - slug: vjt - token_endpoint: Et natus et deleniti fugiat. - token_endpoint_auth_methods_supported: - - Recusandae vero temporibus perspiciatis perferendis. - - Ut illum iusto consectetur voluptas porro. - - Nesciunt error sunt. - Et impedit eaque culpa quia est et. - updated_at: "2008-09-17T17:27:28Z" - - authorization_endpoint: Laudantium est omnis asperiores. - created_at: "1981-01-06T12:18:09Z" + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. + token_endpoint_auth_methods_supported: + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" grant_types_supported: - - Amet recusandae cum et nesciunt reiciendis. - - Sit vitae provident. - - Dolore vel sunt totam assumenda ab voluptatum. - - Aut quaerat quia sunt quo sed. - id: Ipsam corrupti. + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. scopes_supported: - - Rerum repellat recusandae. - - Non ex. - - Eum neque. - - Magnam non rerum ratione. - slug: vjt - token_endpoint: Et natus et deleniti fugiat. - token_endpoint_auth_methods_supported: - - Recusandae vero temporibus perspiciatis perferendis. - - Ut illum iusto consectetur voluptas porro. - - Nesciunt error sunt. - Et impedit eaque culpa quia est et. - updated_at: "2008-09-17T17:27:28Z" + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. + token_endpoint_auth_methods_supported: + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" project_id: type: string description: The project ID this OAuth proxy server belongs to - example: Vitae in laborum tempore in quis incidunt. + example: Nesciunt rerum officia. slug: type: string description: The slug of the OAuth proxy server - example: ym4 + example: m56 pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 updated_at: type: string description: When the OAuth proxy server was last updated. - example: "1998-09-15T11:04:51Z" + example: "1984-06-25T21:19:45Z" format: date-time example: - created_at: "2000-12-05T03:21:19Z" - id: Dolorem quidem iste ullam deleniti facere provident. + created_at: "2006-08-30T06:14:36Z" + id: Quasi sit consectetur in consectetur magni. oauth_proxy_providers: - - authorization_endpoint: Laudantium est omnis asperiores. - created_at: "1981-01-06T12:18:09Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" grant_types_supported: - - Amet recusandae cum et nesciunt reiciendis. - - Sit vitae provident. - - Dolore vel sunt totam assumenda ab voluptatum. - - Aut quaerat quia sunt quo sed. - id: Ipsam corrupti. + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. scopes_supported: - - Rerum repellat recusandae. - - Non ex. - - Eum neque. - - Magnam non rerum ratione. - slug: vjt - token_endpoint: Et natus et deleniti fugiat. - token_endpoint_auth_methods_supported: - - Recusandae vero temporibus perspiciatis perferendis. - - Ut illum iusto consectetur voluptas porro. - - Nesciunt error sunt. - Et impedit eaque culpa quia est et. - updated_at: "2008-09-17T17:27:28Z" - - authorization_endpoint: Laudantium est omnis asperiores. - created_at: "1981-01-06T12:18:09Z" + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. + token_endpoint_auth_methods_supported: + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" grant_types_supported: - - Amet recusandae cum et nesciunt reiciendis. - - Sit vitae provident. - - Dolore vel sunt totam assumenda ab voluptatum. - - Aut quaerat quia sunt quo sed. - id: Ipsam corrupti. + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. scopes_supported: - - Rerum repellat recusandae. - - Non ex. - - Eum neque. - - Magnam non rerum ratione. - slug: vjt - token_endpoint: Et natus et deleniti fugiat. + - Et impedit eaque culpa quia est et. + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. token_endpoint_auth_methods_supported: - - Recusandae vero temporibus perspiciatis perferendis. - - Ut illum iusto consectetur voluptas porro. - - Nesciunt error sunt. + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" + grant_types_supported: + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. + scopes_supported: - Et impedit eaque culpa quia est et. - updated_at: "2008-09-17T17:27:28Z" - project_id: Alias non. - slug: e7i - updated_at: "1977-01-01T13:34:23Z" + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. + token_endpoint_auth_methods_supported: + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" + project_id: Omnis voluptatem quia ullam neque. + slug: 32u + updated_at: "2011-06-22T18:37:25Z" required: - id - project_id @@ -29205,26 +29568,26 @@ definitions: asset_id: type: string description: The ID of the uploaded asset. - example: Exercitationem sapiente mollitia quis perferendis expedita. + example: Amet suscipit id voluptatem consectetur tenetur. id: type: string description: The ID of the deployment asset. - example: Cumque sint et ipsam voluptatem perspiciatis. + example: Ipsum architecto consectetur. name: type: string description: The name to give the document as it will be displayed in UIs. - example: Et blanditiis aut provident. + example: Voluptas aut. slug: type: string description: The slug to give the document as it will be displayed in URLs. - example: mqw + example: jr0 pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 example: - asset_id: Sint molestias voluptatem similique expedita incidunt. - id: Et omnis quo accusantium ut voluptatem. - name: Totam quo. - slug: gjp + asset_id: Est nesciunt exercitationem. + id: Quo officia atque aut consequatur. + name: Nihil rerum maxime. + slug: dak required: - id - asset_id @@ -29236,54 +29599,65 @@ definitions: properties: id: type: string - example: Rem quibusdam voluptatem nesciunt. + example: Non cum a eaque sed asperiores incidunt. name: type: string - example: Distinctio esse vel non. + example: Omnis doloremque eius quisquam molestiae adipisci voluptatem. projects: type: array items: $ref: '#/definitions/ProjectEntry' example: - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p slug: type: string - example: Velit labore. + example: Suscipit fugit. sso_connection_id: type: string - example: Minus beatae. + example: Ut ipsam et. user_workspace_slugs: type: array items: type: string - example: Veritatis laboriosam. + example: Placeat numquam itaque est. example: - - In voluptas sed ut. - - Commodi harum omnis sed eaque. - - Dolore ut ipsam. - - Error placeat numquam itaque est mollitia. + - Libero quae quod qui. + - Earum est distinctio itaque. + - Aut beatae possimus omnis quia veritatis. + - Tenetur sit tenetur aut. example: - id: Libero quae quod qui. - name: Earum est distinctio itaque. + id: Voluptatem fugit suscipit magni id amet. + name: Dolores a nesciunt ex. projects: - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - - id: Eos laudantium ipsa ut porro. - name: Repudiandae iure qui itaque. - slug: qed - slug: Aut beatae possimus omnis quia veritatis. - sso_connection_id: Sit tenetur aut eos voluptatem. + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + - id: Voluptatem veniam blanditiis. + name: Dolor non consequatur. + slug: e1p + slug: Reprehenderit dolor est. + sso_connection_id: Beatae omnis quae rerum aut cumque ad. user_workspace_slugs: - - Magni id amet aut. - - A nesciunt. - - Excepturi reprehenderit dolor est optio ut. - - Omnis quae rerum. + - Saepe reprehenderit. + - Qui et sint. + - Recusandae ab ut voluptatem corporis incidunt laborum. required: - id - name @@ -29296,93 +29670,91 @@ definitions: created_at: type: string description: The creation date of the package - example: "2001-06-10T19:56:57Z" + example: "2002-10-20T07:19:36Z" format: date-time deleted_at: type: string description: The deletion date of the package - example: "1977-11-06T07:36:39Z" + example: "1981-03-31T11:08:47Z" format: date-time description: type: string description: The description of the package. This contains HTML content. - example: Nihil tempora magnam aliquid. + example: Nemo consectetur et. description_raw: type: string description: The unsanitized, user-supplied description of the package. Limited markdown syntax is supported. - example: Odio consequatur similique nam veritatis sapiente. + example: Consequuntur deleniti occaecati officia magnam recusandae aut. id: type: string description: The ID of the package - example: Voluptas quis cumque sit magni. + example: Et itaque. image_asset_id: type: string description: The asset ID of the image to show for this package - example: Fuga temporibus. + example: Non quam. keywords: type: array items: type: string - example: Consequatur voluptatum est sed tenetur corrupti aut. + example: Voluptatem voluptatum laboriosam id illum suscipit. description: The keywords of the package example: - - Voluptas numquam qui maiores cupiditate vel itaque. - - Ea ratione et. - - Quaerat velit eligendi quasi optio perspiciatis vel. - - Asperiores maiores sed est soluta. + - In alias libero reprehenderit. + - Impedit aspernatur. + - Autem est nulla error unde corrupti. + - Suscipit quo aut quam ipsam neque deleniti. latest_version: type: string description: The latest version of the package - example: Dolorum id unde qui culpa omnis. + example: Quo quos. name: type: string description: The name of the package - example: Quibusdam voluptas non aut voluptatem. + example: Sit quo reprehenderit nulla porro laborum. organization_id: type: string description: The ID of the organization that owns the package - example: Eos fugit natus architecto sit harum qui. + example: Perspiciatis vel tenetur asperiores maiores sed est. project_id: type: string description: The ID of the project that owns the package - example: Et enim est fuga velit. + example: Velit eligendi quasi. summary: type: string description: The summary of the package - example: Et accusamus dignissimos quia expedita. + example: Unde qui culpa omnis alias. title: type: string description: The title of the package - example: Ab tenetur. + example: Est fuga temporibus qui dolorum. updated_at: type: string description: The last update date of the package - example: "2012-04-13T20:58:45Z" + example: "1979-04-21T19:27:54Z" format: date-time url: type: string description: External URL for the package owner - example: Quo reprehenderit nulla porro laborum ab. - example: - created_at: "1971-05-25T23:49:13Z" - deleted_at: "1990-04-26T05:21:19Z" - description: Et accusantium dolorem. - description_raw: Eos et enim. - id: Voluptate voluptatum nemo a distinctio. - image_asset_id: Numquam rerum. + example: Quasi est ab sint ducimus. + example: + created_at: "2001-07-09T13:34:47Z" + deleted_at: "1992-01-29T00:32:35Z" + description: Dolor ea. + description_raw: Et quae eos sed. + id: In eius unde corporis molestiae eligendi. + image_asset_id: Non vel impedit atque neque excepturi. keywords: - - Hic soluta corporis eos et ducimus delectus. - - Libero facere harum molestiae porro. - - Quod in eius unde corporis molestiae eligendi. - - Fugit aut quia deleniti animi ullam ipsam. - latest_version: Labore debitis est. - name: Deleniti corporis eligendi voluptas. - organization_id: Amet debitis sed. - project_id: Molestias impedit ducimus natus animi enim. - summary: Doloribus excepturi voluptate labore. - title: Cumque aliquam cum. - updated_at: "1991-11-19T20:32:27Z" - url: Et deleniti in sunt. + - Saepe iste quasi velit. + - Qui veniam. + latest_version: Eveniet sint. + name: Numquam rerum. + organization_id: Et deleniti in sunt. + project_id: Fugit aut quia deleniti animi ullam ipsam. + summary: Rerum nihil qui et vero dolores ducimus. + title: Labore debitis est. + updated_at: "1982-07-10T12:25:52Z" + url: Impedit aperiam explicabo praesentium consequatur. required: - id - name @@ -29397,35 +29769,35 @@ definitions: created_at: type: string description: The creation date of the package version - example: "1982-11-24T14:24:48Z" + example: "1986-05-18T20:02:41Z" format: date-time deployment_id: type: string description: The ID of the deployment that the version belongs to - example: Sint labore et nihil. + example: Asperiores iste ex. id: type: string description: The ID of the package version - example: Quis aspernatur omnis adipisci aut vitae occaecati. + example: Est eveniet quia reiciendis. package_id: type: string description: The ID of the package that the version belongs to - example: Dolore ut sit reiciendis voluptatem expedita voluptatibus. + example: In amet aut non commodi incidunt odio. semver: type: string description: The semantic version value - example: Dolorem quae magni assumenda harum dolores suscipit. + example: Et ut. visibility: type: string description: The visibility of the package version - example: Eligendi nihil autem. + example: Ipsum modi necessitatibus quo sit explicabo. example: - created_at: "1978-04-12T07:53:40Z" - deployment_id: Distinctio voluptatibus laudantium exercitationem ab itaque dolorem. - id: Et et mollitia cupiditate et. - package_id: Neque voluptatem. - semver: Consequuntur vel nihil iste. - visibility: Autem vero aliquid alias vel laborum. + created_at: "1987-04-13T17:02:21Z" + deployment_id: Iusto temporibus qui molestias sed voluptas. + id: Et libero neque in. + package_id: Consequatur quia omnis molestiae expedita vero. + semver: Natus magni ut. + visibility: Odio dolorum laboriosam. required: - id - package_id @@ -29456,18 +29828,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -29483,7 +29855,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -29499,7 +29871,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -29510,7 +29882,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -29549,11 +29921,11 @@ definitions: example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -29585,18 +29957,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -29612,7 +29984,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -29628,19 +30000,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -29671,18 +30043,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -29718,15 +30090,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -29741,56 +30113,56 @@ definitions: description: type: string description: The description of the package. Limited markdown syntax is supported. - example: go3 + example: zt8 maxLength: 10000 image_asset_id: type: string description: The asset ID of the image to show for this package - example: rqo + example: ffl maxLength: 50 keywords: type: array items: type: string - example: At in similique. + example: Reiciendis occaecati molestias. description: The keywords of the package example: - - Perferendis amet sed est sequi ut ut. - - Ut ut dolorem sint aspernatur in voluptas. - - Et sunt consequatur natus. + - Quia non. + - Consequuntur aliquam. + - Inventore et. maxItems: 5 name: type: string description: The name of the package - example: hr2 + example: y5q pattern: ^[a-z0-9_-]{1,128}$ maxLength: 100 summary: type: string description: The summary of the package - example: 32a + example: ly8 maxLength: 80 title: type: string description: The title of the package - example: c3n + example: hrq maxLength: 100 url: type: string description: External URL for the package owner - example: l7h + example: 3x9 maxLength: 100 example: - description: ix4 - image_asset_id: dzv + description: tya + image_asset_id: qfj keywords: - - Alias inventore. - - Consequuntur aspernatur voluptas non quos. - - Voluptatem dolores aut aut officiis. - name: y85 - summary: x9m - title: t8b - url: zr0 + - Enim non quis sed consectetur. + - Aliquam voluptas excepturi voluptatem et iusto quia. + - Ex corporis et repellendus a. + name: lhj + summary: zvg + title: jf1 + url: st2 required: - name - title @@ -29822,15 +30194,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -29845,7 +30217,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -29861,14 +30233,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -29904,7 +30276,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -29915,8 +30287,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -29931,7 +30303,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -29947,14 +30319,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -29974,7 +30346,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -29997,11 +30369,11 @@ definitions: example: false description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -30017,7 +30389,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30037,15 +30409,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -30076,7 +30448,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -30087,8 +30459,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -30123,14 +30495,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -30146,7 +30518,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30162,11 +30534,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false @@ -30189,7 +30561,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30205,18 +30577,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -30232,7 +30604,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30248,18 +30620,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -30295,7 +30667,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true @@ -30318,7 +30690,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30334,7 +30706,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -30361,7 +30733,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30377,18 +30749,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -30424,7 +30796,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: true @@ -30432,7 +30804,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -30447,7 +30819,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30463,19 +30835,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -30490,7 +30862,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30506,11 +30878,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: true @@ -30549,14 +30921,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -30576,7 +30948,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30596,14 +30968,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -30662,7 +31034,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30682,10 +31054,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -30705,7 +31077,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30721,7 +31093,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -30732,8 +31104,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -30764,19 +31136,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -30791,7 +31163,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30819,7 +31191,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -30834,7 +31206,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -30857,12 +31229,12 @@ definitions: example: false description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -30893,7 +31265,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -30936,19 +31308,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -30979,7 +31351,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -31006,7 +31378,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31033,8 +31405,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -31072,12 +31444,12 @@ definitions: example: true description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -31092,27 +31464,27 @@ definitions: deployment_id: type: string description: The deployment ID to associate with the package version - example: Qui odit nihil minus fugiat. + example: Accusantium blanditiis ut et eveniet. name: type: string description: The name of the package - example: Qui iste officia omnis saepe qui. + example: Laborum qui laborum quia. version: type: string description: The new semantic version of the package to publish - example: Vero quod omnis eos aliquid quidem. + example: Odio quia asperiores qui ea nulla. visibility: type: string description: The visibility of the package version - example: public + example: private enum: - public - private example: - deployment_id: Iure voluptate laborum qui laborum quia. - name: Temporibus at et. - version: Voluptas aut aut sapiente non nisi ut. - visibility: private + deployment_id: Quia minima numquam voluptas. + name: Quis doloremque aut quidem placeat. + version: Ut quod itaque. + visibility: public required: - name - version @@ -31125,7 +31497,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31148,12 +31520,12 @@ definitions: example: false description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -31168,7 +31540,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31184,18 +31556,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -31238,8 +31610,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -31254,7 +31626,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31281,8 +31653,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -31317,7 +31689,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: true @@ -31325,7 +31697,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -31340,7 +31712,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31356,18 +31728,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -31399,7 +31771,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -31410,8 +31782,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -31426,7 +31798,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31442,11 +31814,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: fault: true @@ -31469,7 +31841,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31485,14 +31857,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -31512,7 +31884,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31532,7 +31904,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: fault: false @@ -31554,9 +31926,9 @@ definitions: properties: location: type: string - example: Culpa aspernatur sint cum. + example: Voluptas nihil sed facere nisi libero doloremque. example: - location: Laborum vero cumque hic et enim. + location: Error repellat quidem nulla dicta totam. required: - location PackagesUpdatePackageRequestBody: @@ -31566,55 +31938,55 @@ definitions: description: type: string description: The description of the package. Limited markdown syntax is supported. - example: 36t + example: r6o maxLength: 10000 id: type: string description: The id of the package to update - example: gm3 + example: w59 maxLength: 50 image_asset_id: type: string description: The asset ID of the image to show for this package - example: 9ud + example: fnh maxLength: 50 keywords: type: array items: type: string - example: Aliquid nulla eius iusto omnis sed pariatur. + example: Consequuntur consequatur corrupti et quas rerum. description: The keywords of the package example: - - Reprehenderit ut. - - Eum ducimus. - - Ut atque sit. + - Est et deleniti et maxime. + - Voluptatum illo sequi rerum. + - Saepe consequatur commodi. maxItems: 5 summary: type: string description: The summary of the package - example: c5j + example: "482" maxLength: 80 title: type: string description: The title of the package - example: h4q + example: d1d maxLength: 100 url: type: string description: External URL for the package owner - example: m45 + example: qw1 maxLength: 100 example: - description: 17a - id: dm4 - image_asset_id: hzk + description: zcr + id: ke5 + image_asset_id: 6xc keywords: - - Ab est et deleniti et maxime eum. - - Illo sequi rerum facere saepe consequatur. - - Qui laudantium. - summary: ooq - title: 2yr - url: jdm + - Aut ut eveniet. + - Enim voluptate quasi et unde voluptatem. + - Similique et id voluptatem qui architecto. + summary: 59p + title: jio + url: 8g8 required: - id PackagesUpdatePackageUnauthorizedResponseBody: @@ -31640,7 +32012,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -31652,7 +32024,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -31667,7 +32039,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31683,19 +32055,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -31710,7 +32082,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31726,19 +32098,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -31753,34 +32125,34 @@ definitions: actual_enabled_server_count: type: integer description: The number of servers enabled at the time of the request - example: 546401138555646205 + example: 5185134479774274201 format: int64 max_servers: type: integer description: The maximum number of servers allowed - example: 7012062145934179153 + example: 4571324196587177937 format: int64 max_tool_calls: type: integer description: The maximum number of tool calls allowed - example: 1373272084619082936 + example: 7569070943459161150 format: int64 servers: type: integer description: The number of servers used, according to the Polar meter - example: 6773291991572341423 + example: 745481240576913974 format: int64 tool_calls: type: integer description: The number of tool calls used - example: 6217606402574611016 + example: 7002637421755133094 format: int64 example: - actual_enabled_server_count: 8681864866897693180 - max_servers: 784997349142132400 - max_tool_calls: 6213639332351125209 - servers: 3482642671500466518 - tool_calls: 7954082016211076474 + actual_enabled_server_count: 4273767852662916521 + max_servers: 1659224041325551575 + max_tool_calls: 1831300409214944548 + servers: 4250137701297740114 + tool_calls: 4192796186754289925 required: - tool_calls - max_tool_calls @@ -31794,43 +32166,43 @@ definitions: created_at: type: string description: The creation date of the project. - example: "2009-12-24T23:58:02Z" + example: "2005-09-21T00:54:11Z" format: date-time id: type: string description: The ID of the project - example: Quia asperiores qui. + example: Eius deleniti temporibus. logo_asset_id: type: string description: The ID of the logo asset for the project - example: Minima numquam. + example: Eum nesciunt fuga voluptates ut. name: type: string description: The name of the project - example: Nulla fugiat accusantium blanditiis ut et eveniet. + example: Doloribus tempore repellendus nesciunt itaque. organization_id: type: string description: The ID of the organization that owns the project - example: Quidem placeat porro ut quod itaque ea. + example: Quis ut dignissimos. slug: type: string description: The slug of the project - example: 6jq + example: r86 pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 updated_at: type: string description: The last update date of the project. - example: "1974-12-27T09:56:18Z" + example: "2003-04-26T07:05:24Z" format: date-time example: - created_at: "2006-04-24T22:44:29Z" - id: Asperiores quidem voluptate optio et. - logo_asset_id: Ullam necessitatibus. - name: Saepe dolor fugit dolor delectus. - organization_id: Et dolorem porro numquam eos. - slug: cdc - updated_at: "2008-10-01T03:31:56Z" + created_at: "1987-05-12T08:37:32Z" + id: Nam minus et magni expedita. + logo_asset_id: Beatae quia ratione quis necessitatibus dicta. + name: Blanditiis sit aut cumque. + organization_id: Enim unde nostrum ut non expedita temporibus. + slug: 5y9 + updated_at: "1977-07-26T03:20:28Z" required: - id - name @@ -31845,21 +32217,21 @@ definitions: id: type: string description: The ID of the project - example: Aut veritatis et. + example: Ut voluptates temporibus. name: type: string description: The name of the project - example: Molestiae non cum a. + example: Similique minus. slug: type: string description: The slug of the project - example: 6qc + example: 2vq pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 example: - id: Omnis doloremque eius quisquam molestiae adipisci voluptatem. - name: Suscipit fugit. - slug: d36 + id: Quasi in voluptas. + name: Ut nulla commodi. + slug: 1w9 required: - id - name @@ -31871,7 +32243,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -31891,14 +32263,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -31930,7 +32302,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -31977,14 +32349,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -32016,19 +32388,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -32059,18 +32431,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -32086,7 +32458,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32106,14 +32478,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -32129,7 +32501,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32156,8 +32528,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -32172,15 +32544,15 @@ definitions: name: type: string description: The name of the project - example: lds + example: tae maxLength: 40 organization_id: type: string description: The ID of the organization to create the project in - example: Fugiat exercitationem aut ea consectetur. + example: Molestias vitae distinctio quia at. example: - name: su7 - organization_id: Dicta consequatur dolor soluta. + name: 6zd + organization_id: Aut error quo molestiae quis. required: - organization_id - name @@ -32207,19 +32579,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -32250,19 +32622,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -32277,7 +32649,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32293,14 +32665,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -32320,7 +32692,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32336,11 +32708,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: fault: true @@ -32363,7 +32735,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32379,7 +32751,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -32406,7 +32778,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32422,19 +32794,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -32449,7 +32821,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32477,7 +32849,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -32492,7 +32864,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32508,19 +32880,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -32551,11 +32923,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false @@ -32594,11 +32966,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: fault: false @@ -32606,7 +32978,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -32641,10 +33013,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -32684,14 +33056,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -32707,7 +33079,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32730,12 +33102,12 @@ definitions: example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -32750,7 +33122,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32793,7 +33165,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32813,10 +33185,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -32856,14 +33228,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -32879,7 +33251,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32895,11 +33267,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false @@ -32922,7 +33294,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -32938,18 +33310,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -32981,19 +33353,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -33024,19 +33396,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -33051,9 +33423,9 @@ definitions: asset_id: type: string description: The ID of the asset - example: Sit eum. + example: Vel enim quo qui fuga. example: - asset_id: Dolor voluptatum deleniti aut. + asset_id: Eius nam consequuntur. required: - asset_id ProjectsSetLogoUnauthorizedResponseBody: @@ -33063,7 +33435,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -33083,14 +33455,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -33106,7 +33478,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -33129,12 +33501,12 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -33165,19 +33537,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -33194,24 +33566,24 @@ definitions: canonical_name: type: string description: The canonical name of the tool. Will be the same as the name if there is no variation. - example: Rerum libero ut quaerat doloribus qui. + example: Ducimus similique. confirm: type: string description: Confirmation mode for the tool - example: Eligendi vitae porro rerum rerum quasi veritatis. + example: Quod in ut ea accusamus sed ullam. confirm_prompt: type: string description: Prompt for the confirmation - example: Quia qui sit omnis consequatur. + example: Enim nulla fugiat consequatur ea dolores debitis. created_at: type: string description: The creation date of the tool. - example: "2015-06-20T05:08:14Z" + example: "2002-04-20T06:31:17Z" format: date-time description: type: string description: Description of the tool - example: Accusamus quia quos impedit. + example: Quo a blanditiis dignissimos sit autem. engine: type: string description: The template engine @@ -33221,11 +33593,11 @@ definitions: history_id: type: string description: The revision tree ID for the prompt template - example: Soluta alias quod vitae excepturi. + example: Eum libero. id: type: string description: The ID of the tool - example: Eos similique. + example: Qui qui sunt eum aut adipisci. kind: type: string description: The kind of prompt the template is used for @@ -33236,103 +33608,104 @@ definitions: name: type: string description: The name of the tool - example: Temporibus voluptatem. + example: Non accusamus quia sit nobis accusamus sint. predecessor_id: type: string description: The previous version of the prompt template to use as predecessor - example: Tempora minus fuga voluptas eos. + example: Eligendi vitae porro rerum rerum quasi veritatis. project_id: type: string description: The ID of the project - example: Eius dolorum et adipisci. + example: Ea cumque eius explicabo qui magni. prompt: type: string description: The template content - example: In dicta. + example: Quia qui sit omnis consequatur. schema: type: string description: JSON schema for the request - example: Eum libero. + example: Vel sint atque. schema_version: type: string description: Version of the schema - example: Quis culpa non iusto et. + example: Nihil incidunt molestiae. summarizer: type: string description: Summarizer for the tool - example: Possimus libero voluptatum. + example: Aliquam aliquam et aliquid autem nemo. tool_urn: type: string description: The URN of this tool - example: Dolore soluta qui rerum voluptates. + example: Suscipit porro sit. tools_hint: type: array items: type: string - example: Voluptatibus nobis quaerat qui. + example: Voluptatum quam non consequatur dolor excepturi. description: The suggested tool names associated with the prompt template example: - - Et rem voluptatem libero commodi non. - - Et sint id voluptatem adipisci perspiciatis. - - Ex magni id perspiciatis ducimus hic. + - Incidunt possimus hic qui. + - Sunt hic nihil natus. + - Explicabo in. maxItems: 20 updated_at: type: string description: The last update date of the tool. - example: "1994-07-04T21:10:44Z" + example: "1984-02-05T20:58:08Z" format: date-time variation: $ref: '#/definitions/ToolVariation' description: A prompt template example: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Nesciunt perferendis libero ducimus maxime eos deserunt. - confirm: Et eos. - confirm_prompt: Quia sequi voluptatum. - created_at: "2015-01-01T11:15:25Z" - description: Et et neque cum nihil. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Et porro voluptatem distinctio. + confirm: Sint odit qui illum illum quae. + confirm_prompt: Delectus rerum neque. + created_at: "1970-04-27T04:26:35Z" + description: Nulla non quasi. engine: mustache - history_id: Veniam iusto aliquam excepturi delectus. - id: Nihil labore nostrum qui corporis. - kind: prompt - name: Voluptas sed architecto alias est ut qui. - predecessor_id: Consequatur et temporibus et. - project_id: Reprehenderit similique minima rerum qui. - prompt: Blanditiis praesentium est ipsam. - schema: Illum deserunt debitis. - schema_version: In nobis odio laboriosam illum qui commodi. - summarizer: Enim sed quaerat et dicta accusantium ut. - tool_urn: Aperiam laborum vel. + history_id: Laudantium quia sequi. + id: Ea aut quaerat placeat dolorem quia accusantium. + kind: higher_order_tool + name: Rerum esse dolore sed eum beatae dolor. + predecessor_id: Quisquam enim sed quaerat et dicta. + project_id: Dolore velit eos aut asperiores aliquam. + prompt: Ut ut sequi et amet. + schema: Omnis veritatis architecto quis porro iusto et. + schema_version: Perferendis harum pariatur voluptas. + summarizer: Incidunt molestiae et sequi aut. + tool_urn: Dignissimos quis ut qui. tools_hint: - - Sed dolores est eius. - - Facere dolorem nam qui corrupti. - - Optio in. - updated_at: "1991-06-02T03:08:03Z" + - Repellat quisquam voluptas. + - Quas modi nihil maxime quia. + - Soluta odio. + updated_at: "2012-12-11T13:58:46Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - id - history_id @@ -33355,21 +33728,21 @@ definitions: id: type: string description: The ID of the prompt template - example: Consequuntur optio aut minima. + example: Doloremque eos similique corporis quod. kind: type: string description: The kind of the prompt template - example: Dolorem doloremque tempore eum. + example: Asperiores et doloremque non. name: type: string description: The name of the prompt template - example: o79 + example: ep8 pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 example: - id: Eius vitae nemo voluptatum ipsam sed. - kind: Totam vero natus assumenda autem quam et. - name: 0ss + id: Deleniti laborum. + kind: Mollitia nemo voluptate sed aliquam corrupti tempora. + name: vew required: - id - name @@ -33383,30 +33756,30 @@ definitions: $ref: '#/definitions/PackageVersion' example: package: - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. version: - created_at: "2009-10-15T11:07:34Z" - deployment_id: Et vel sunt. - id: Distinctio voluptas omnis quae enim et dicta. - package_id: Qui amet dolorem vel laboriosam ipsa consequuntur. - semver: Expedita repellat sed dolores perferendis. - visibility: Cum dolorum. + created_at: "1995-01-02T23:55:32Z" + deployment_id: Quidem architecto ut commodi natus. + id: Ullam ut sapiente sapiente quia. + package_id: Non earum. + semver: Debitis quia sit quod omnis. + visibility: Delectus repudiandae ea. required: - package - version @@ -33424,9 +33797,9 @@ definitions: prompt: type: string description: The rendered prompt - example: Qui ex sit et voluptas optio. + example: Id perspiciatis tempore corporis. example: - prompt: Quis quia. + prompt: In quis aut. required: - prompt ResponseFilter: @@ -33437,34 +33810,39 @@ definitions: type: array items: type: string - example: Sint sequi ratione. + example: Consequatur fuga. description: Content types to filter for example: - - Facilis voluptas sint enim voluptatum. - - Distinctio alias doloribus consequatur. + - Et qui libero nihil et magnam dolor. + - Possimus cum vero natus et eum. + - Vel corporis dolorem. status_codes: type: array items: type: string - example: Saepe eveniet explicabo cumque fugit. + example: In amet corrupti. description: Status codes to filter for example: - - Consequatur quia culpa sed cumque. - - Sint debitis voluptatem blanditiis voluptatibus qui fugit. + - Voluptate voluptates corrupti. + - Eligendi aliquid. + - Rerum deleniti dolorem dolores consequatur. + - Eos aut et molestiae rerum repellat amet. type: type: string description: Response filter type for the tool - example: Totam dolor voluptas. + example: Repudiandae dolorem unde iusto et praesentium ipsam. description: Response filter metadata for the tool example: content_types: - - Perferendis eveniet voluptate. - - Corrupti quibusdam eligendi. - - Rerum rerum deleniti dolorem dolores. + - Rem qui illum enim molestias sint. + - Est et natus. + - Sed cumque minima. + - Distinctio sapiente pariatur et nam. status_codes: - - Iusto et praesentium. - - Esse in. - type: Eligendi odit maxime qui quis repudiandae. + - Molestiae nihil aperiam fugiat inventore. + - Aut aut facilis fugit excepturi id doloremque. + - Similique tempore minima at sequi nemo. + type: Temporibus expedita voluptatem quaerat cupiditate numquam. required: - type - status_codes @@ -33476,118 +33854,124 @@ definitions: bearer_format: type: string description: The bearer format - example: Nemo ratione ipsum occaecati repellat distinctio tempore. + example: Quibusdam aspernatur laborum sed. env_variables: type: array items: type: string - example: Modi nihil incidunt enim aut unde. + example: Et saepe. description: The environment variables example: - - Maxime sapiente ab sunt qui quam dolorem. - - Repudiandae temporibus repudiandae quae ut dolorum minima. - - Ipsam dicta sit deleniti. - - Eos delectus odit distinctio totam id ex. + - Quidem eos magnam. + - Incidunt est. + - Dolor ab totam ut ullam. + - Quidem est rem odit non sit. in_placement: type: string description: Where the security token is placed - example: Hic assumenda possimus quod culpa dolorem inventore. + example: Id ex repellat nemo. name: type: string description: The name of the security scheme - example: Et vero qui. + example: Delectus odit distinctio. oauth_flows: type: string description: The OAuth flows example: - - 65 - - 32 - - 112 - - 97 - - 114 - - 105 - - 97 - - 116 - - 117 - - 114 - - 32 - - 113 + - 83 - 117 - - 105 - - 32 - - 118 - - 111 - - 108 - - 117 - - 112 - - 116 - - 97 + - 110 - 116 - - 101 - 32 - - 117 - - 116 + - 111 + - 109 + - 110 + - 105 + - 115 - 46 format: byte oauth_types: type: array items: type: string - example: Qui ex ducimus sed. + example: Amet incidunt autem maxime. description: The OAuth types example: - - Dignissimos cumque consectetur vel et quo. - - Dignissimos tempora et. - - Assumenda iusto. - - Qui et. + - Exercitationem consequatur quia impedit autem repellat. + - Consequatur sit. + - Ratione doloribus est perspiciatis sed dolor. scheme: type: string description: The security scheme - example: Nam quidem ipsam quaerat eveniet aut. + example: Aut possimus molestias veniam. type: type: string description: The type of security - example: Voluptas quia. + example: Deleniti ut. example: - bearer_format: Sit modi. + bearer_format: Soluta dolorum. env_variables: - - Est rem odit non sit et sapiente. - - Rerum voluptas laboriosam. - - Cumque minus voluptatem doloremque enim non. - in_placement: Blanditiis amet incidunt autem maxime aliquid sit. - name: Veniam voluptatem quibusdam aspernatur laborum. + - In voluptas quia sit. + - Ea exercitationem ipsam quae. + - Blanditiis omnis quo voluptate dolorum. + - Sed at ea enim provident laudantium. + in_placement: Cumque minus voluptatem doloremque enim non. + name: Voluptas laboriosam. oauth_flows: - - 68 + - 86 - 111 - 108 - - 111 - - 114 - - 32 + - 117 + - 112 + - 116 - 97 - - 98 + - 115 - 32 - - 116 - - 111 - - 116 + - 117 + - 108 + - 108 - 97 - 109 - 32 - - 117 + - 114 + - 101 + - 105 + - 99 + - 105 + - 101 + - 110 + - 100 + - 105 + - 115 + - 32 + - 97 + - 114 + - 99 + - 104 + - 105 - 116 + - 101 + - 99 + - 116 + - 111 - 32 + - 99 - 117 - - 108 - - 108 + - 112 + - 105 + - 100 + - 105 + - 116 - 97 - - 109 + - 116 + - 101 - 46 oauth_types: - - Est perspiciatis. - - Dolor alias sunt omnis. - - Et saepe. - - Quia quidem eos magnam ipsum incidunt est. - scheme: Consequatur quia impedit autem repellat in. - type: Nemo ut aut possimus. + - Placeat autem porro. + - Et aut consequatur. + - Quia reiciendis itaque recusandae nihil. + scheme: Eveniet perferendis ipsa temporibus alias. + type: Sapiente doloremque. required: - name - in_placement @@ -33600,24 +33984,24 @@ definitions: description: type: string description: Description of the server variable - example: Perferendis ipsa temporibus alias fugiat soluta. + example: Aperiam iusto distinctio nemo tempore molestiae. env_variables: type: array items: type: string - example: Recusandae vel placeat. + example: Consectetur fugit aspernatur. description: The environment variables example: - - Laudantium et aut consequatur iure quia. - - Itaque recusandae. - - Id voluptas ullam reiciendis architecto cupiditate. - - Quasi in voluptas quia sit tempore ea. + - Rem voluptatum optio aut dolore ex. + - Maxime qui et minima. + - Ut enim illum dolorem dolorem veritatis aliquam. example: - description: Ipsam quae omnis blanditiis omnis quo. + description: Reiciendis sit sunt velit illum quis numquam. env_variables: - - Recusandae sed at ea enim provident. - - Optio soluta aperiam. - - Distinctio nemo tempore molestiae molestiae. + - Tempore suscipit. + - Nam quis cupiditate at vero ut fuga. + - Et repudiandae nihil in quia. + - Fugiat autem voluptas voluptatem facilis. required: - description - env_variables @@ -33629,16 +34013,59 @@ definitions: $ref: '#/definitions/Project' example: project: - created_at: "2000-03-03T01:19:45Z" - id: Natus sit porro dolor vitae. - logo_asset_id: Fugit nesciunt saepe enim rem saepe eos. - name: Qui dolores accusantium soluta qui. - organization_id: Ex dolorem laboriosam iusto. - slug: yvl - updated_at: "2004-08-29T03:31:46Z" + created_at: "1982-08-15T21:58:36Z" + id: Ut ipsa accusantium corrupti dolores nemo nesciunt. + logo_asset_id: Omnis omnis sunt nesciunt impedit atque. + name: Voluptatem incidunt pariatur omnis illum et officiis. + organization_id: Qui velit eligendi tempora quis culpa molestiae. + slug: j9a + updated_at: "1972-05-21T05:31:53Z" required: - project SlackCallbackBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: request is invalid (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackCallbackConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -33665,14 +34092,143 @@ definitions: timeout: type: boolean description: Is the error a timeout? + example: false + description: resource already exists (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackCallbackForbiddenResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? example: true - description: request is invalid (default view) + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: permission denied (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackCallbackGatewayErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackCallbackInvalidResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: request contains one or more invalidation fields (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true timeout: false required: - name @@ -33681,7 +34237,7 @@ definitions: - temporary - timeout - fault - SlackCallbackConflictResponseBody: + SlackCallbackInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -33704,18 +34260,61 @@ definitions: temporary: type: boolean description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: an unexpected error occurred (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackCallbackNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) + description: resource not found (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -33724,7 +34323,50 @@ definitions: - temporary - timeout - fault - SlackCallbackForbiddenResponseBody: + SlackCallbackUnauthorizedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: unauthorized access (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackCallbackUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -33752,7 +34394,93 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: an unexpected error occurred (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackCallbackUnsupportedMediaResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: unsupported media type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackDeleteSlackConnectionBadRequestResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: request is invalid (default view) example: fault: false id: 123abc @@ -33767,7 +34495,7 @@ definitions: - temporary - timeout - fault - SlackCallbackGatewayErrorResponseBody: + SlackDeleteSlackConnectionConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -33790,14 +34518,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -33810,7 +34538,7 @@ definitions: - temporary - timeout - fault - SlackCallbackInvalidResponseBody: + SlackDeleteSlackConnectionForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -33838,7 +34566,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: request contains one or more invalidation fields (default view) + description: permission denied (default view) example: fault: true id: 123abc @@ -33853,7 +34581,50 @@ definitions: - temporary - timeout - fault - SlackCallbackInvariantViolationResponseBody: + SlackDeleteSlackConnectionGatewayErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: an unexpected error occurred (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackDeleteSlackConnectionInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -33881,14 +34652,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: request contains one or more invalidation fields (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -33896,14 +34667,14 @@ definitions: - temporary - timeout - fault - SlackCallbackNotFoundResponseBody: + SlackDeleteSlackConnectionInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -33924,6 +34695,49 @@ definitions: type: boolean description: Is the error a timeout? example: false + description: an unexpected error occurred (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + SlackDeleteSlackConnectionNotFoundResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: false description: resource not found (default view) example: fault: false @@ -33939,14 +34753,14 @@ definitions: - temporary - timeout - fault - SlackCallbackUnauthorizedResponseBody: + SlackDeleteSlackConnectionUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -33973,8 +34787,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -33982,7 +34796,7 @@ definitions: - temporary - timeout - fault - SlackCallbackUnexpectedResponseBody: + SlackDeleteSlackConnectionUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34005,7 +34819,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -34017,7 +34831,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -34025,14 +34839,14 @@ definitions: - temporary - timeout - fault - SlackCallbackUnsupportedMediaResponseBody: + SlackDeleteSlackConnectionUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34055,7 +34869,7 @@ definitions: example: true description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -34068,14 +34882,14 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionBadRequestResponseBody: + SlackGetSlackConnectionBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34103,7 +34917,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -34111,7 +34925,7 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionConflictResponseBody: + SlackGetSlackConnectionConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34134,19 +34948,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -34154,14 +34968,14 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionForbiddenResponseBody: + SlackGetSlackConnectionForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34181,7 +34995,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: false @@ -34189,7 +35003,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -34197,7 +35011,7 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionGatewayErrorResponseBody: + SlackGetSlackConnectionGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34227,12 +35041,12 @@ definitions: example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -34240,14 +35054,14 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionInvalidResponseBody: + SlackGetSlackConnectionInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34263,7 +35077,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34275,7 +35089,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -34283,14 +35097,14 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionInvariantViolationResponseBody: + SlackGetSlackConnectionInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34313,12 +35127,12 @@ definitions: example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -34326,14 +35140,14 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionNotFoundResponseBody: + SlackGetSlackConnectionNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34349,7 +35163,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -34360,7 +35174,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -34369,7 +35183,7 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionUnauthorizedResponseBody: + SlackGetSlackConnectionUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34396,14 +35210,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -34412,14 +35226,14 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionUnexpectedResponseBody: + SlackGetSlackConnectionUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34446,7 +35260,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -34455,14 +35269,14 @@ definitions: - temporary - timeout - fault - SlackDeleteSlackConnectionUnsupportedMediaResponseBody: + SlackGetSlackConnectionUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34490,7 +35304,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -34498,7 +35312,7 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionBadRequestResponseBody: + SlackLoginBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34525,10 +35339,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -34541,14 +35355,14 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionConflictResponseBody: + SlackLoginConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34564,18 +35378,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -34584,7 +35398,7 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionForbiddenResponseBody: + SlackLoginForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34611,14 +35425,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -34627,14 +35441,14 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionGatewayErrorResponseBody: + SlackLoginGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34650,18 +35464,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -34670,14 +35484,14 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionInvalidResponseBody: + SlackLoginInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34700,7 +35514,7 @@ definitions: example: true description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -34713,7 +35527,7 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionInvariantViolationResponseBody: + SlackLoginInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34736,7 +35550,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34748,7 +35562,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -34756,14 +35570,14 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionNotFoundResponseBody: + SlackLoginNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34779,18 +35593,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -34799,14 +35613,14 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionUnauthorizedResponseBody: + SlackLoginUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34822,7 +35636,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34842,7 +35656,7 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionUnexpectedResponseBody: + SlackLoginUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34865,7 +35679,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34876,8 +35690,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -34885,14 +35699,14 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionUnsupportedMediaResponseBody: + SlackLoginUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34908,19 +35722,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -34928,14 +35742,14 @@ definitions: - temporary - timeout - fault - SlackLoginBadRequestResponseBody: + SlackUpdateSlackConnectionBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34951,11 +35765,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false @@ -34963,7 +35777,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -34971,14 +35785,14 @@ definitions: - temporary - timeout - fault - SlackLoginConflictResponseBody: + SlackUpdateSlackConnectionConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -34994,19 +35808,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -35014,7 +35828,7 @@ definitions: - temporary - timeout - fault - SlackLoginForbiddenResponseBody: + SlackUpdateSlackConnectionForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35037,14 +35851,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -35057,14 +35871,14 @@ definitions: - temporary - timeout - fault - SlackLoginGatewayErrorResponseBody: + SlackUpdateSlackConnectionGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -35087,12 +35901,12 @@ definitions: example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -35100,7 +35914,7 @@ definitions: - temporary - timeout - fault - SlackLoginInvalidResponseBody: + SlackUpdateSlackConnectionInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35127,10 +35941,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -35143,7 +35957,7 @@ definitions: - temporary - timeout - fault - SlackLoginInvariantViolationResponseBody: + SlackUpdateSlackConnectionInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35170,15 +35984,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -35186,7 +36000,7 @@ definitions: - temporary - timeout - fault - SlackLoginNotFoundResponseBody: + SlackUpdateSlackConnectionNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35220,50 +36034,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - SlackLoginUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: unauthorized access (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -35272,50 +36043,19 @@ definitions: - temporary - timeout - fault - SlackLoginUnexpectedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' + SlackUpdateSlackConnectionRequestBody: + title: SlackUpdateSlackConnectionRequestBody type: object properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: + default_toolset_slug: type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + description: The default toolset slug for this Slack connection + example: Vel et voluptatum repudiandae cum enim est. example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true + default_toolset_slug: Sit illo. required: - - name - - id - - message - - temporary - - timeout - - fault - SlackLoginUnsupportedMediaResponseBody: + - default_toolset_slug + SlackUpdateSlackConnectionUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35338,55 +36078,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: unsupported media type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - SlackUpdateSlackConnectionBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: request is invalid (default view) + example: false + description: unauthorized access (default view) example: fault: false id: 123abc @@ -35401,7 +36098,7 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionConflictResponseBody: + SlackUpdateSlackConnectionUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35428,15 +36125,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource already exists (default view) + example: true + description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -35444,7 +36141,7 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionForbiddenResponseBody: + SlackUpdateSlackConnectionUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35467,19 +36164,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -35487,7 +36184,7 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionGatewayErrorResponseBody: + TemplatesCreateTemplateBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35514,8 +36211,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + example: false + description: request is invalid (default view) example: fault: false id: 123abc @@ -35530,7 +36227,7 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionInvalidResponseBody: + TemplatesCreateTemplateConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35553,18 +36250,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: request contains one or more invalidation fields (default view) + example: true + description: resource already exists (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -35573,14 +36270,14 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionInvariantViolationResponseBody: + TemplatesCreateTemplateForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -35596,14 +36293,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -35616,7 +36313,7 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionNotFoundResponseBody: + TemplatesCreateTemplateGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35639,19 +36336,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: resource not found (default view) + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -35659,26 +36356,14 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionRequestBody: - title: SlackUpdateSlackConnectionRequestBody - type: object - properties: - default_toolset_slug: - type: string - description: The default toolset slug for this Slack connection - example: Necessitatibus animi iure earum. - example: - default_toolset_slug: Sunt porro molestiae velit fugiat inventore. - required: - - default_toolset_slug - SlackUpdateSlackConnectionUnauthorizedResponseBody: + TemplatesCreateTemplateInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -35694,19 +36379,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: unauthorized access (default view) + description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -35714,14 +36399,14 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionUnexpectedResponseBody: + TemplatesCreateTemplateInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -35737,7 +36422,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -35757,7 +36442,7 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionUnsupportedMediaResponseBody: + TemplatesCreateTemplateNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35780,12 +36465,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: unsupported media type (default view) + description: resource not found (default view) example: fault: false id: 123abc @@ -35800,57 +36485,77 @@ definitions: - temporary - timeout - fault - TemplatesCreateTemplateBadRequestResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' + TemplatesCreateTemplateRequestBody: + title: TemplatesCreateTemplateRequestBody type: object properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: + arguments: type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: + description: The JSON Schema defining the placeholders found in the prompt template + example: '{"name":"example","email":"mail@example.com"}' + format: json + description: type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer + description: The description of the prompt template + example: Delectus sequi doloremque odio. + engine: + type: string + description: The template engine + example: mustache + enum: + - mustache + kind: + type: string + description: The kind of prompt the template is used for + example: prompt + enum: + - prompt + - higher_order_tool name: type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: request is invalid (default view) + description: The name of the prompt template + example: yyh + pattern: ^[a-z0-9_-]{1,128}$ + maxLength: 40 + prompt: + type: string + description: The template content + example: Consequatur voluptatum quo nisi consequatur nisi doloremque. + tools_hint: + type: array + items: + type: string + example: Aspernatur numquam ad necessitatibus optio earum. + description: The suggested tool names associated with the prompt template + example: + - Necessitatibus facilis pariatur occaecati accusantium. + - Mollitia perspiciatis cum ea qui nisi. + - Doloribus in corporis fugit ipsum accusamus illum. + maxItems: 20 example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false + arguments: '{"name":"example","email":"mail@example.com"}' + description: Cum et harum dicta. + engine: mustache + kind: prompt + name: 1z6 + prompt: Non dolor doloremque ipsam corrupti fugiat modi. + tools_hint: + - Aspernatur molestiae dicta sequi eos. + - Veritatis recusandae velit aliquam odit fuga officiis. + - Aperiam a nam temporibus. required: - name - - id - - message - - temporary - - timeout - - fault - TemplatesCreateTemplateConflictResponseBody: + - prompt + - engine + - kind + TemplatesCreateTemplateUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -35871,7 +36576,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: resource already exists (default view) + description: unauthorized access (default view) example: fault: false id: 123abc @@ -35886,7 +36591,7 @@ definitions: - temporary - timeout - fault - TemplatesCreateTemplateForbiddenResponseBody: + TemplatesCreateTemplateUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35914,13 +36619,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -35929,7 +36634,7 @@ definitions: - temporary - timeout - fault - TemplatesCreateTemplateGatewayErrorResponseBody: + TemplatesCreateTemplateUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35956,15 +36661,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + example: true + description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -35972,14 +36677,14 @@ definitions: - temporary - timeout - fault - TemplatesCreateTemplateInvalidResponseBody: + TemplatesDeleteTemplateBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -36000,13 +36705,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: request contains one or more invalidation fields (default view) + description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -36015,14 +36720,14 @@ definitions: - temporary - timeout - fault - TemplatesCreateTemplateInvariantViolationResponseBody: + TemplatesDeleteTemplateConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -36043,13 +36748,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: resource already exists (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -36058,7 +36763,7 @@ definitions: - temporary - timeout - fault - TemplatesCreateTemplateNotFoundResponseBody: + TemplatesDeleteTemplateForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36086,7 +36791,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: resource not found (default view) + description: permission denied (default view) example: fault: true id: 123abc @@ -36101,70 +36806,7 @@ definitions: - temporary - timeout - fault - TemplatesCreateTemplateRequestBody: - title: TemplatesCreateTemplateRequestBody - type: object - properties: - arguments: - type: string - description: The JSON Schema defining the placeholders found in the prompt template - example: '{"name":"example","email":"mail@example.com"}' - format: json - description: - type: string - description: The description of the prompt template - example: Omnis consequatur ipsa est possimus sunt. - engine: - type: string - description: The template engine - example: mustache - enum: - - mustache - kind: - type: string - description: The kind of prompt the template is used for - example: prompt - enum: - - prompt - - higher_order_tool - name: - type: string - description: The name of the prompt template - example: "424" - pattern: ^[a-z0-9_-]{1,128}$ - maxLength: 40 - prompt: - type: string - description: The template content - example: Dolorem iusto dicta deserunt id. - tools_hint: - type: array - items: - type: string - example: Et impedit facilis esse ipsum aspernatur. - description: The suggested tool names associated with the prompt template - example: - - Fugiat saepe. - - Quae enim. - - Aperiam vel veniam. - maxItems: 20 - example: - arguments: '{"name":"example","email":"mail@example.com"}' - description: Quia non dolore. - engine: mustache - kind: higher_order_tool - name: 5uf - prompt: Id quia autem incidunt. - tools_hint: - - Sit adipisci sint sed sapiente et. - - Voluptates reiciendis quia pariatur. - - Debitis rerum mollitia tempora necessitatibus. - required: - - name - - prompt - - engine - - kind - TemplatesCreateTemplateUnauthorizedResponseBody: + TemplatesDeleteTemplateGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36191,10 +36833,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: unauthorized access (default view) + example: false + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -36207,7 +36849,7 @@ definitions: - temporary - timeout - fault - TemplatesCreateTemplateUnexpectedResponseBody: + TemplatesDeleteTemplateInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36230,19 +36872,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + example: false + description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -36250,14 +36892,14 @@ definitions: - temporary - timeout - fault - TemplatesCreateTemplateUnsupportedMediaResponseBody: + TemplatesDeleteTemplateInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -36277,14 +36919,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: unsupported media type (default view) + example: false + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -36293,14 +36935,14 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateBadRequestResponseBody: + TemplatesDeleteTemplateNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -36320,10 +36962,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: request is invalid (default view) + example: false + description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -36336,7 +36978,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateConflictResponseBody: + TemplatesDeleteTemplateUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36363,15 +37005,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource already exists (default view) + example: false + description: unauthorized access (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -36379,7 +37021,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateForbiddenResponseBody: + TemplatesDeleteTemplateUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36407,14 +37049,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -36422,14 +37064,14 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateGatewayErrorResponseBody: + TemplatesDeleteTemplateUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -36450,13 +37092,13 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -36465,14 +37107,14 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateInvalidResponseBody: + TemplatesGetTemplateBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -36488,12 +37130,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true - description: request contains one or more invalidation fields (default view) + description: request is invalid (default view) example: fault: false id: 123abc @@ -36508,50 +37150,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateInvariantViolationResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - TemplatesDeleteTemplateNotFoundResponseBody: + TemplatesGetTemplateConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36574,19 +37173,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: resource not found (default view) + description: resource already exists (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -36594,7 +37193,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateUnauthorizedResponseBody: + TemplatesGetTemplateForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36622,13 +37221,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (default view) + description: permission denied (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -36637,14 +37236,14 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateUnexpectedResponseBody: + TemplatesGetTemplateGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -36664,10 +37263,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -36680,14 +37279,14 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateUnsupportedMediaResponseBody: + TemplatesGetTemplateInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -36703,12 +37302,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: unsupported media type (default view) + example: false + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc @@ -36723,14 +37322,14 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateBadRequestResponseBody: + TemplatesGetTemplateInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -36746,14 +37345,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: request is invalid (default view) + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -36766,7 +37365,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateConflictResponseBody: + TemplatesGetTemplateNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36793,15 +37392,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource already exists (default view) + example: false + description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -36809,7 +37408,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateForbiddenResponseBody: + TemplatesGetTemplateUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36832,18 +37431,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: permission denied (default view) + example: true + description: unauthorized access (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -36852,7 +37451,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateGatewayErrorResponseBody: + TemplatesGetTemplateUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36875,19 +37474,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -36895,7 +37494,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateInvalidResponseBody: + TemplatesGetTemplateUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36922,10 +37521,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: request contains one or more invalidation fields (default view) + example: false + description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -36938,7 +37537,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateInvariantViolationResponseBody: + TemplatesListTemplatesBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36961,19 +37560,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + example: false + description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -36981,7 +37580,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateNotFoundResponseBody: + TemplatesListTemplatesConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37004,19 +37603,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: resource not found (default view) + description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -37024,7 +37623,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateUnauthorizedResponseBody: + TemplatesListTemplatesForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37047,19 +37646,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: unauthorized access (default view) + example: false + description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -37067,14 +37666,14 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateUnexpectedResponseBody: + TemplatesListTemplatesGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -37097,12 +37696,12 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -37110,14 +37709,14 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateUnsupportedMediaResponseBody: + TemplatesListTemplatesInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -37133,19 +37732,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true - description: unsupported media type (default view) + description: request contains one or more invalidation fields (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -37153,14 +37752,14 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesBadRequestResponseBody: + TemplatesListTemplatesInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -37180,15 +37779,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: request is invalid (default view) + example: false + description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -37196,7 +37795,7 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesConflictResponseBody: + TemplatesListTemplatesNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37223,14 +37822,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource already exists (default view) + example: false + description: resource not found (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -37239,7 +37838,7 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesForbiddenResponseBody: + TemplatesListTemplatesUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37262,19 +37861,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: permission denied (default view) + example: true + description: unauthorized access (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -37282,14 +37881,14 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesGatewayErrorResponseBody: + TemplatesListTemplatesUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -37316,7 +37915,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -37325,14 +37924,14 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesInvalidResponseBody: + TemplatesListTemplatesUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -37352,8 +37951,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: request contains one or more invalidation fields (default view) + example: true + description: unsupported media type (default view) example: fault: true id: 123abc @@ -37368,7 +37967,7 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesInvariantViolationResponseBody: + TemplatesRenderTemplateBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37396,14 +37995,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -37411,14 +38010,14 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesNotFoundResponseBody: + TemplatesRenderTemplateByIDBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -37438,15 +38037,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource not found (default view) + example: true + description: request is invalid (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -37454,7 +38053,7 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesUnauthorizedResponseBody: + TemplatesRenderTemplateByIDConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37477,57 +38076,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? example: true - description: unauthorized access (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - TemplatesListTemplatesUnexpectedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false timeout: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -37540,7 +38096,7 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesUnsupportedMediaResponseBody: + TemplatesRenderTemplateByIDForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37568,14 +38124,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unsupported media type (default view) + description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -37583,14 +38139,14 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateBadRequestResponseBody: + TemplatesRenderTemplateByIDGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -37610,14 +38166,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (default view) + example: true + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -37626,14 +38182,14 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateByIDBadRequestResponseBody: + TemplatesRenderTemplateByIDInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -37654,13 +38210,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: request is invalid (default view) + description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -37669,7 +38225,7 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateByIDConflictResponseBody: + TemplatesRenderTemplateByIDInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37692,19 +38248,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: resource already exists (default view) + example: true + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -37712,7 +38268,7 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateByIDForbiddenResponseBody: + TemplatesRenderTemplateByIDNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37740,14 +38296,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: permission denied (default view) + description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -37755,50 +38311,24 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateByIDGatewayErrorResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' + TemplatesRenderTemplateByIDRequestBody: + title: TemplatesRenderTemplateByIDRequestBody type: object properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + arguments: + type: object + description: The input data to render the template with + example: + Et ut provident deserunt.: Et earum. + Non ut dolores consequatur perferendis dolores voluptatem.: Ratione qui recusandae. + additionalProperties: true example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false + arguments: + Ex repellat id voluptas et dolorum.: Quibusdam voluptatibus rerum impedit aut odio qui. + Quo deserunt.: Nam dolor voluptatibus vel doloremque blanditiis. required: - - name - - id - - message - - temporary - - timeout - - fault - TemplatesRenderTemplateByIDInvalidResponseBody: + - arguments + TemplatesRenderTemplateByIDUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37821,14 +38351,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: request contains one or more invalidation fields (default view) + description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -37841,14 +38371,14 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateByIDInvariantViolationResponseBody: + TemplatesRenderTemplateByIDUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -37868,56 +38398,13 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - TemplatesRenderTemplateByIDNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: resource not found (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request temporary: false timeout: false required: @@ -37927,23 +38414,7 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateByIDRequestBody: - title: TemplatesRenderTemplateByIDRequestBody - type: object - properties: - arguments: - type: object - description: The input data to render the template with - example: - Voluptatem quis eos nisi iste similique impedit.: Quod quaerat blanditiis sit magnam. - additionalProperties: true - example: - arguments: - Atque eos.: Qui at similique possimus dolores nihil. - Aut asperiores.: Fugit possimus nemo praesentium. - required: - - arguments - TemplatesRenderTemplateByIDUnauthorizedResponseBody: + TemplatesRenderTemplateByIDUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37971,14 +38442,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: unauthorized access (default view) + description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -37986,14 +38457,14 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateByIDUnexpectedResponseBody: + TemplatesRenderTemplateConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -38013,15 +38484,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + example: true + description: resource already exists (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -38029,7 +38500,7 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateByIDUnsupportedMediaResponseBody: + TemplatesRenderTemplateForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -38053,96 +38524,10 @@ definitions: type: boolean description: Is the error temporary? example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: unsupported media type (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - TemplatesRenderTemplateConflictResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true timeout: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - TemplatesRenderTemplateForbiddenResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true description: permission denied (default view) example: fault: false @@ -38150,7 +38535,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -38165,7 +38550,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -38185,15 +38570,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -38224,18 +38609,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -38251,7 +38636,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -38271,7 +38656,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true @@ -38322,7 +38707,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -38338,8 +38723,8 @@ definitions: type: object description: The input data to render the template with example: - Ducimus maiores provident.: Rerum sunt odio ipsam nostrum. - Rerum impedit aut odio qui rerum.: Odio quo odio nobis ad a ut. + Ducimus ratione numquam ducimus et explicabo repellendus.: Deleniti ullam incidunt totam repellat recusandae asperiores. + Odio at repellendus fugiat totam et natus.: Totam est saepe voluptas corrupti. additionalProperties: true engine: type: string @@ -38350,22 +38735,22 @@ definitions: kind: type: string description: The kind of prompt the template is used for - example: higher_order_tool + example: prompt enum: - prompt - higher_order_tool prompt: type: string description: The template content to render - example: Repellat id voluptas et dolorum explicabo. + example: Nemo suscipit. example: arguments: - In rerum quis.: Dolorem delectus. - Qui voluptas.: Ipsam delectus laborum. - Voluptatum natus ea corrupti ipsa nam.: Repudiandae hic. + Aut et odio.: Error ut modi. + Modi ea accusamus vel voluptatibus amet.: Placeat perferendis aut. + Velit et accusamus vero saepe.: Magni possimus. engine: mustache - kind: higher_order_tool - prompt: Aut facere voluptatibus odio non vel. + kind: prompt + prompt: Voluptatem ut unde mollitia nulla. required: - prompt - arguments @@ -38378,7 +38763,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -38405,8 +38790,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -38449,7 +38834,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -38484,7 +38869,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: true @@ -38492,7 +38877,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -38523,14 +38908,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -38550,7 +38935,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -38566,19 +38951,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -38593,7 +38978,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -38613,14 +38998,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -38652,18 +39037,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -38679,7 +39064,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -38738,11 +39123,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: false @@ -38750,7 +39135,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -38765,7 +39150,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -38788,12 +39173,12 @@ definitions: example: false description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -38813,7 +39198,7 @@ definitions: description: type: string description: The description of the prompt template - example: Autem et ut unde maiores qui quisquam. + example: Commodi ad voluptas veniam hic omnis in. engine: type: string description: The template engine @@ -38823,7 +39208,7 @@ definitions: id: type: string description: The ID of the prompt template to update - example: Officia maiores eos nobis fuga in. + example: Ipsam accusamus quisquam quia minus. kind: type: string description: The kind of prompt the template is used for @@ -38834,29 +39219,29 @@ definitions: prompt: type: string description: The template content - example: Nesciunt dicta. + example: Ut non id. tools_hint: type: array items: type: string - example: Alias neque voluptatibus cupiditate nostrum. + example: Qui quae reiciendis et eaque itaque. description: The suggested tool names associated with the prompt template example: - - Voluptatem et. - - Ad vel mollitia et. - - Commodi et quia quaerat sit ut sapiente. + - Fugiat maiores dolorum eligendi nihil aliquam ipsa. + - Dolorum esse quo repellendus omnis voluptatem. + - Ut est et dolore. maxItems: 20 example: arguments: '{"name":"example","email":"mail@example.com"}' - description: Iusto maxime. + description: Voluptatem pariatur enim quos. engine: mustache - id: Autem ut ut voluptatem ut labore quos. - kind: higher_order_tool - prompt: Nihil animi officiis. + id: Et amet quis eveniet et et. + kind: prompt + prompt: Porro est optio doloremque. tools_hint: - - Sint voluptatem pariatur enim quos eos. - - Nesciunt adipisci at eius. - - Delectus vero soluta suscipit quasi sequi. + - Quod optio rerum. + - Est voluptatem. + - Omnis occaecati dolorem natus aspernatur ullam. required: - id TemplatesUpdateTemplateUnauthorizedResponseBody: @@ -38866,7 +39251,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -38882,11 +39267,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: fault: true @@ -38894,7 +39279,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -38925,14 +39310,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -38968,14 +39353,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -38996,83 +39381,86 @@ definitions: type: array items: type: string - example: Impedit aperiam unde voluptas et quo explicabo. + example: Rerum qui sed maxime aliquid voluptas accusamus. description: Add-on items bullets of the tier (optional) example: - - Aut pariatur debitis quaerat. - - Nihil iure sed enim et. + - Rerum repellat odio libero dolorem voluptatum. + - Reiciendis et natus ab officia. base_price: type: number description: The base price for the tier - example: 0.9102660803626755 + example: 0.7210612369881689 format: double feature_bullets: type: array items: type: string - example: Amet in eum facilis ab accusantium. + example: Quia nihil iure sed enim et. description: Key feature bullets of the tier example: - - Illo voluptas rerum modi animi corrupti delectus. - - Error distinctio quibusdam perferendis dignissimos quam. + - Eveniet possimus adipisci. + - Non et fugiat iure. + - Dignissimos qui. included_bullets: type: array items: type: string - example: Distinctio perspiciatis modi ipsum et sunt. + example: Ullam accusamus consequuntur maiores voluptas. description: Included items bullets of the tier example: - - Exercitationem ut enim atque. - - Vel reiciendis. - - Aut consectetur quis. + - Ut sunt aut ea ullam esse soluta. + - Est aspernatur magni omnis veritatis. + - Impedit assumenda voluptatem velit consequuntur nisi ut. + - Suscipit natus et sequi. included_credits: type: integer description: The number of credits included in the tier for playground and other dashboard activities - example: 8796453544014665303 + example: 4208977758392030646 format: int64 included_servers: type: integer description: The number of servers included in the tier - example: 7016774311090752 + example: 474618756909620646 format: int64 included_tool_calls: type: integer description: The number of tool calls included in the tier - example: 285165861611100788 + example: 3930262213980847452 format: int64 price_per_additional_credit: type: number description: The price per additional credit - example: 0.36544575438213905 + example: 0.21699003575246031 format: double price_per_additional_server: type: number description: The price per additional server - example: 0.4967238596379307 + example: 0.1800764145031353 format: double price_per_additional_tool_call: type: number description: The price per additional tool call - example: 0.3991860359011297 + example: 0.8077372186385244 format: double example: add_on_bullets: - - Suscipit natus et sequi. - - Rerum qui sed maxime aliquid voluptas accusamus. - base_price: 0.8704287997582418 + - Qui sed. + - Error iusto officia eaque nesciunt perspiciatis dolorem. + base_price: 0.9869165310828927 feature_bullets: - - Iure voluptas dignissimos qui iusto. - - Accusamus consequuntur maiores voluptas repudiandae vitae ut. + - Qui et cupiditate. + - Dolorum rerum iusto eos eos. + - Veritatis possimus nam totam inventore. included_bullets: - - Ea ullam esse soluta molestias est aspernatur. - - Omnis veritatis odit impedit. - - Voluptatem velit consequuntur nisi. - included_credits: 9005870539989698338 - included_servers: 551376746993450705 - included_tool_calls: 160755727741980780 - price_per_additional_credit: 0.017409518258045757 - price_per_additional_server: 0.06017259159421869 - price_per_additional_tool_call: 0.4412116710655307 + - Rerum nisi architecto minus. + - Consequatur animi vel corrupti alias. + - Et ut. + included_credits: 8654323487652876584 + included_servers: 5354452698053385646 + included_tool_calls: 8420043326518504320 + price_per_additional_credit: 0.49046224516530773 + price_per_additional_server: 0.0939243012444687 + price_per_additional_tool_call: 0.7962222461583263 required: - base_price - included_tool_calls @@ -39095,115 +39483,119 @@ definitions: example: http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. ToolEntry: title: ToolEntry type: object @@ -39211,15 +39603,15 @@ definitions: id: type: string description: The ID of the tool - example: Perferendis vitae ut ducimus qui aspernatur qui. + example: Quae consectetur placeat. name: type: string description: The name of the tool - example: Ea distinctio. + example: Dolorem est est fuga dolorem doloremque tempore. tool_urn: type: string description: The URN of the tool - example: Suscipit error consequatur occaecati amet ullam quis. + example: Consequuntur optio aut minima. type: type: string example: http @@ -39227,9 +39619,9 @@ definitions: - http - prompt example: - id: Voluptas officiis voluptatibus id quo. - name: Voluptate rerum et explicabo illo. - tool_urn: Dolores inventore deserunt saepe. + id: Eius vitae nemo voluptatum ipsam sed. + name: Vero natus assumenda autem. + tool_urn: Mollitia nihil nihil blanditiis. type: http required: - type @@ -39243,72 +39635,72 @@ definitions: confirm: type: string description: The confirmation mode for the tool variation - example: Eos tenetur. + example: Vitae dolores itaque quos dicta veniam. confirm_prompt: type: string description: The confirmation prompt for the tool variation - example: Reprehenderit maxime reprehenderit. + example: Neque consequatur quo deserunt ab eveniet commodi. created_at: type: string description: The creation date of the tool variation - example: Temporibus vel recusandae laudantium consequuntur voluptas. + example: Est ab voluptatum consequatur. description: type: string description: The description of the tool variation - example: Sapiente ut ipsum. + example: Delectus consequatur voluptate. group_id: type: string description: The ID of the tool variation group - example: Officiis eum. + example: Non soluta dolores rem eos at. id: type: string description: The ID of the tool variation - example: Temporibus mollitia aut aperiam. + example: Dolorem repellendus voluptate. name: type: string description: The name of the tool variation - example: Repellendus aut consequuntur sequi. + example: Doloremque ipsum. src_tool_name: type: string description: The name of the source tool - example: Autem quis. + example: Esse est. summarizer: type: string description: The summarizer of the tool variation - example: Id asperiores et maxime est illum. + example: Rerum iusto et reiciendis consequuntur mollitia. summary: type: string description: The summary of the tool variation - example: Optio quo qui hic at. + example: Et vitae voluptatibus adipisci quidem praesentium eos. tags: type: array items: type: string - example: Sunt culpa iusto non consequatur officiis. + example: Non doloremque numquam dolores voluptatem voluptatum. description: The tags of the tool variation example: - - Corporis inventore maiores. - - Eligendi velit eius vel. + - Corrupti et dolores laboriosam provident. + - Aut sint ut exercitationem maiores ut cumque. + - Veniam adipisci sit culpa est corrupti. updated_at: type: string description: The last update date of the tool variation - example: Suscipit dolore commodi ut ducimus nobis eaque. - example: - confirm: Vitae dolores itaque quos dicta veniam. - confirm_prompt: Neque consequatur quo deserunt ab eveniet commodi. - created_at: Aut sint ut exercitationem maiores ut cumque. - description: Delectus consequatur voluptate. - group_id: Fugit non soluta dolores rem eos at. - id: Ut accusantium ex dolorem repellendus. - name: Doloremque ipsum. - src_tool_name: Esse est. - summarizer: Dolores laboriosam provident. - summary: Et vitae voluptatibus adipisci quidem praesentium eos. + example: Id vero provident facilis facilis voluptate voluptatem. + example: + confirm: Sunt veritatis. + confirm_prompt: Quod iusto pariatur totam. + created_at: Minus totam. + description: Quia quia. + group_id: Voluptatem nesciunt omnis aliquam. + id: Maiores inventore a atque et. + name: Ratione ratione voluptatem corrupti blanditiis veritatis quia. + src_tool_name: Enim vero facere. + summarizer: Et dolorem veniam ut vero officia aperiam. + summary: Hic rerum sit maxime quod vel. tags: - - Doloremque numquam. - - Voluptatem voluptatum. - - Eaque corrupti. - updated_at: Veniam adipisci sit culpa est corrupti. + - Quis aut quo earum. + - Facere neque optio animi earum harum quia. + updated_at: Molestiae id sit perferendis odit. required: - id - group_id @@ -39322,7 +39714,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -39338,14 +39730,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -39381,14 +39773,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -39408,7 +39800,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -39436,7 +39828,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -39467,11 +39859,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: true @@ -39479,7 +39871,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -39494,7 +39886,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -39514,15 +39906,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -39553,11 +39945,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: true @@ -39580,7 +39972,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -39603,7 +39995,7 @@ definitions: example: true description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -39623,7 +40015,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -39639,7 +40031,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -39650,8 +40042,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -39686,15 +40078,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -39709,7 +40101,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -39725,11 +40117,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: true @@ -39752,32 +40144,32 @@ definitions: account_type: type: string description: The account type of the organization - example: Recusandae optio. + example: Sed eos. created_at: type: string description: When the toolset was created. - example: "1979-07-14T00:31:46Z" + example: "1981-12-24T00:28:50Z" format: date-time custom_domain_id: type: string description: The ID of the custom domain to use for the toolset - example: Officia saepe voluptas. + example: Eos tempora est aspernatur. default_environment_slug: type: string description: The slug of the environment to use as the default for the toolset - example: s4v + example: s97 pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 description: type: string description: Description of the toolset - example: Sint qui ducimus. + example: Esse ut ut. external_oauth_server: $ref: '#/definitions/ExternalOAuthServer' id: type: string description: The ID of the toolset - example: Dolorem quo itaque rerum quo. + example: Aut vel architecto harum laboriosam deleniti. mcp_enabled: type: boolean description: Whether the toolset is enabled for MCP @@ -39789,23 +40181,23 @@ definitions: mcp_slug: type: string description: The slug of the MCP to use for the toolset - example: 0j5 + example: 3la pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 name: type: string description: The name of the toolset - example: Laboriosam totam similique qui consectetur. + example: Ea sed. oauth_proxy_server: $ref: '#/definitions/OAuthProxyServer' organization_id: type: string description: The organization ID this toolset belongs to - example: Suscipit sit aut voluptates commodi. + example: Et necessitatibus. project_id: type: string description: The project ID this toolset belongs to - example: Autem libero nemo rerum. + example: Explicabo earum qui quibusdam reprehenderit alias enim. prompt_templates: type: array items: @@ -39813,348 +40205,245 @@ definitions: description: 'The prompt templates in this toolset -- Note: these are actual prompts, as in MCP prompts' example: - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. - engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. - tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" - variation: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. security_variables: type: array items: $ref: '#/definitions/SecurityVariable' description: The security variables that are relevant to the toolset example: - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: type: array items: $ref: '#/definitions/ServerVariable' description: The server variables that are relevant to the toolset example: - - description: At sequi cum laborum et dignissimos. - env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. slug: type: string description: The slug of the toolset - example: hlc + example: 9sj pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 tool_urns: type: array items: type: string - example: Quia illo sunt accusamus ea aut voluptatem. + example: Quaerat culpa vero voluptatem consequuntur. description: The tool URNs in this toolset example: - - Aliquid deleniti amet. - - Quis vitae quasi est est atque assumenda. - - Accusantium ab earum. + - Recusandae veniam. + - Cum porro nobis. tools: type: array items: @@ -40163,1070 +40452,1302 @@ definitions: example: - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - http_tool_definition: + canonical: + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. + tags: + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. + response_filter: + content_types: + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. + status_codes: + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. + tags: + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + prompt_template: + canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. + engine: mustache + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. + tools_hint: + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. updated_at: type: string description: When the toolset was last updated. - example: "1973-12-05T10:19:06Z" + example: "1986-07-24T03:13:59Z" format: date-time example: - account_type: Accusamus quos sed ipsum corrupti ullam. - created_at: "1994-05-14T23:58:11Z" - custom_domain_id: Suscipit sed enim voluptas non. - default_environment_slug: mbj - description: Itaque numquam consequatur. + account_type: Laudantium iure dolore officiis voluptatem enim laborum. + created_at: "1982-12-08T03:23:01Z" + custom_domain_id: Enim rem. + default_environment_slug: 9l2 + description: Et ducimus optio ut distinctio tempora autem. external_oauth_server: - created_at: "1999-02-08T11:28:47Z" - id: Facilis asperiores magnam est facere illum. - metadata: A deserunt provident nam tempore veritatis. - project_id: Pariatur voluptate porro. - slug: r3w - updated_at: "1978-05-13T16:19:54Z" - id: Nobis nam omnis placeat laboriosam. + created_at: "1974-10-05T04:51:33Z" + id: Illo et. + metadata: Ut quisquam accusantium. + project_id: Modi a est qui quidem. + slug: ym3 + updated_at: "1974-07-16T10:00:26Z" + id: Provident nulla. mcp_enabled: false - mcp_is_public: true - mcp_slug: yaa - name: Eaque doloribus et et voluptas. + mcp_is_public: false + mcp_slug: ozz + name: Exercitationem voluptates et dolorum dolor provident et. oauth_proxy_server: - created_at: "1994-11-07T15:08:03Z" - id: Nobis ut ea dolorem. + created_at: "1980-08-08T16:12:36Z" + id: Modi sit. oauth_proxy_providers: - - authorization_endpoint: Laudantium est omnis asperiores. - created_at: "1981-01-06T12:18:09Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" grant_types_supported: - - Amet recusandae cum et nesciunt reiciendis. - - Sit vitae provident. - - Dolore vel sunt totam assumenda ab voluptatum. - - Aut quaerat quia sunt quo sed. - id: Ipsam corrupti. + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. scopes_supported: - - Rerum repellat recusandae. - - Non ex. - - Eum neque. - - Magnam non rerum ratione. - slug: vjt - token_endpoint: Et natus et deleniti fugiat. + - Et impedit eaque culpa quia est et. + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. token_endpoint_auth_methods_supported: - - Recusandae vero temporibus perspiciatis perferendis. - - Ut illum iusto consectetur voluptas porro. - - Nesciunt error sunt. + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" + grant_types_supported: + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. + scopes_supported: - Et impedit eaque culpa quia est et. - updated_at: "2008-09-17T17:27:28Z" - - authorization_endpoint: Laudantium est omnis asperiores. - created_at: "1981-01-06T12:18:09Z" + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. + token_endpoint_auth_methods_supported: + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" grant_types_supported: - - Amet recusandae cum et nesciunt reiciendis. - - Sit vitae provident. - - Dolore vel sunt totam assumenda ab voluptatum. - - Aut quaerat quia sunt quo sed. - id: Ipsam corrupti. + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. scopes_supported: - - Rerum repellat recusandae. - - Non ex. - - Eum neque. - - Magnam non rerum ratione. - slug: vjt - token_endpoint: Et natus et deleniti fugiat. + - Et impedit eaque culpa quia est et. + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. token_endpoint_auth_methods_supported: - - Recusandae vero temporibus perspiciatis perferendis. - - Ut illum iusto consectetur voluptas porro. - - Nesciunt error sunt. + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" + - authorization_endpoint: Illum iusto consectetur voluptas. + created_at: "1983-04-20T19:29:33Z" + grant_types_supported: + - Delectus repellat vitae et. + - Non mollitia et non qui dolorem corporis. + id: Sunt quo sed molestiae vero recusandae vero. + scopes_supported: - Et impedit eaque culpa quia est et. - updated_at: "2008-09-17T17:27:28Z" - project_id: Repellendus quam sequi laboriosam aperiam. - slug: 0rx - updated_at: "1978-10-09T12:18:04Z" - organization_id: Quo ea est pariatur ut temporibus. - project_id: Perspiciatis error eum. + - Ullam quaerat. + - Voluptatum sit dolor consequuntur. + slug: kqa + token_endpoint: Modi nesciunt error. + token_endpoint_auth_methods_supported: + - Nemo corrupti beatae dolore dignissimos. + - Assumenda consequuntur sint excepturi rerum non. + updated_at: "2011-09-20T12:57:38Z" + project_id: Provident odit dolore vel sunt totam assumenda. + slug: zfj + updated_at: "1977-10-18T17:21:36Z" + organization_id: Enim voluptas non. + project_id: Atque suscipit. prompt_templates: - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - - canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. - tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. security_variables: - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 + - 85 - 116 - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - - 32 - - 115 - - 105 + - 46 + oauth_types: + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. + env_variables: + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. + oauth_flows: + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - slug: i9o + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. + env_variables: + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + slug: v0a tool_urns: - - Unde nostrum voluptas dolore accusantium. - - Quos dicta sit. - - Illo harum ex autem dolorem. + - Enim eum non cum. + - Veniam delectus ut. tools: - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. - http_tool_definition: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: In voluptas. - confirm: Tempore earum dignissimos qui numquam in. - confirm_prompt: Aut temporibus eaque a quos perferendis. - created_at: "1998-01-14T19:29:28Z" - default_server_url: Quidem nobis beatae quis repudiandae ea. - deployment_id: Deleniti optio quis ut nobis. - description: Sit nemo quo suscipit. - http_method: Labore harum iure vel. - id: Ut et minima. - name: Nisi velit voluptas doloremque dolorem laboriosam sit. - openapiv3_document_id: Neque incidunt unde ut unde. - openapiv3_operation: Inventore magnam. - package_name: Iste minus. - path: Laborum maxime officia quia sit. - project_id: Rerum aut recusandae voluptatum minus. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. response_filter: content_types: - - Assumenda voluptas sapiente neque modi dignissimos iste. - - Consectetur numquam iure provident. + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. status_codes: - - Aperiam soluta rerum necessitatibus dignissimos. - - Nobis assumenda sint omnis. - - Illo eaque. - - Excepturi debitis nemo et fugiat. - type: Libero soluta. - schema: Aperiam incidunt. - schema_version: Temporibus voluptatem omnis aut nobis. - security: Qui magni voluptas qui consequatur corporis. - summarizer: Aliquid id nemo laudantium expedita fugiat ut. - summary: Autem id voluptatem voluptates. + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. tags: - - Quibusdam eligendi itaque consequatur aperiam ducimus recusandae. - - Est non nesciunt corrupti iste dolor sunt. - tool_urn: Debitis magnam sunt perferendis aut magni. - updated_at: "2002-10-25T03:55:38Z" + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. prompt_template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + - http_tool_definition: + canonical: + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. + tags: + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Corrupti rem aliquid quo. + confirm: Doloremque eum non ut libero temporibus. + confirm_prompt: Deserunt voluptatum eius. + created_at: "1986-01-12T10:11:19Z" + default_server_url: In voluptas. + deployment_id: Excepturi debitis nemo et fugiat. + description: Culpa doloribus atque. + http_method: Sit nemo quo suscipit. + id: Tempore earum dignissimos qui numquam in. + name: Accusantium mollitia et sit excepturi. + openapiv3_document_id: A quidem nobis beatae quis. + openapiv3_operation: Ea quis labore harum iure vel ipsum. + package_name: Aperiam incidunt. + path: Temporibus voluptatem omnis aut nobis. + project_id: Aliquid id nemo laudantium expedita fugiat ut. + response_filter: + content_types: + - Eum est non. + - Corrupti iste. + - Sunt beatae qui magni voluptas qui consequatur. + status_codes: + - Numquam iure provident sint. + - Incidunt unde ut unde velit inventore. + - Nulla impedit quibusdam eligendi itaque consequatur aperiam. + type: Neque modi dignissimos iste. + schema: Sunt unde nobis sequi suscipit eum consequuntur. + schema_version: Voluptatem qui ut ut. + security: Nisi velit voluptas doloremque dolorem laboriosam sit. + summarizer: Sunt non aspernatur quis. + summary: Aut assumenda voluptas. + tags: + - Officia quia sit tenetur. + - Minus cupiditate ut et minima. + - Debitis magnam sunt perferendis aut magni. + - Rerum aut recusandae voluptatum minus. + tool_urn: Aut temporibus eaque a quos perferendis. + updated_at: "1999-11-07T00:55:16Z" variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + prompt_template: + canonical: confirm: At tempora voluptatem ullam consectetur impedit. confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: + - Voluptas nulla culpa corporis vel nam. - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. - updated_at: "2002-10-14T06:34:19Z" + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. + engine: mustache + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. + tools_hint: + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" + variation: + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. + tags: + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. + updated_at: "2007-03-18T16:56:15Z" required: - id - project_id @@ -41246,30 +41767,30 @@ definitions: created_at: type: string description: When the toolset was created. - example: "2008-08-29T22:58:17Z" + example: "1978-08-02T16:19:33Z" format: date-time custom_domain_id: type: string description: The ID of the custom domain to use for the toolset - example: Et at consectetur sed occaecati occaecati. + example: Aut mollitia accusamus aspernatur libero. default_environment_slug: type: string description: The slug of the environment to use as the default for the toolset - example: 0cx + example: ftu pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 description: type: string description: Description of the toolset - example: Voluptas odio eos. + example: Qui et harum officia voluptas ut. id: type: string description: The ID of the toolset - example: Fuga qui deleniti sed. + example: Ea distinctio. mcp_enabled: type: boolean description: Whether the toolset is enabled for MCP - example: false + example: true mcp_is_public: type: boolean description: Whether the toolset is public in MCP @@ -41277,529 +41798,287 @@ definitions: mcp_slug: type: string description: The slug of the MCP to use for the toolset - example: pkc + example: bcb pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 name: type: string description: The name of the toolset - example: Veniam adipisci aliquam. + example: Voluptate rerum et explicabo illo. organization_id: type: string description: The organization ID this toolset belongs to - example: Omnis ipsum aut. + example: Dolores inventore deserunt saepe. project_id: type: string description: The project ID this toolset belongs to - example: Sed quaerat consequatur quas modi eius asperiores. + example: Sit voluptas officiis voluptatibus id quo. prompt_templates: type: array items: $ref: '#/definitions/PromptTemplateEntry' description: 'The prompt templates in this toolset -- Note: these are actual prompts, as in MCP prompts' example: - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak security_variables: type: array items: $ref: '#/definitions/SecurityVariable' description: The security variables that are relevant to the toolset example: - - bearer_format: Ut quasi laboriosam eum ad quam. - env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. - oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 - - 116 - - 32 - - 100 - - 101 - - 98 - - 105 - - 116 - - 105 - - 115 - - 46 - oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. - env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. - oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 - - 116 - - 32 - - 100 - - 101 - - 98 - - 105 - - 116 - - 105 - - 115 - - 46 - oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: type: array items: $ref: '#/definitions/ServerVariable' description: The server variables that are relevant to the toolset example: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. slug: type: string description: The slug of the toolset - example: m85 + example: w8c pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 tool_urns: type: array items: type: string - example: Sint quaerat beatae qui. + example: Et corporis. description: The tool URNs in this toolset example: - - Officia voluptas ut minima ullam totam. - - Est sed assumenda. - - Quae consectetur placeat. + - Illo est culpa voluptates et at. + - Sed occaecati occaecati placeat. + - Officia ab amet occaecati vel. tools: type: array items: $ref: '#/definitions/ToolEntry' description: The tools in this toolset example: - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt updated_at: type: string description: When the toolset was last updated. - example: "1974-07-14T02:50:20Z" + example: "1987-11-12T20:55:25Z" format: date-time example: - created_at: "1983-03-05T11:09:27Z" - custom_domain_id: Sunt dignissimos corporis non non omnis dolor. - default_environment_slug: s4k - description: Consequatur aut voluptates consequatur nulla ipsa. - id: Minus et est velit alias accusamus. + created_at: "2012-06-29T19:22:37Z" + custom_domain_id: Quisquam ut autem eos. + default_environment_slug: 64o + description: Aut a enim sunt dignissimos corporis. + id: Laborum recusandae eum aperiam pariatur. mcp_enabled: false mcp_is_public: false - mcp_slug: j07 - name: Quibusdam aperiam aut corrupti quibusdam cupiditate. - organization_id: Et ad praesentium. - project_id: Aliquam consequatur minus ut aut reprehenderit et. + mcp_slug: ab5 + name: Eligendi fugiat. + organization_id: Natus mollitia deleniti quia reiciendis. + project_id: Qui porro. prompt_templates: - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 - - id: Porro nihil. - kind: Quia eaque animi mollitia ex odit quas. - name: vv1 + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak + - id: Ducimus quisquam reprehenderit a sapiente odit. + kind: Soluta dolorem voluptas omnis. + name: pak security_variables: - - bearer_format: Ut quasi laboriosam eum ad quam. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. - - bearer_format: Ut quasi laboriosam eum ad quam. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. + - bearer_format: Commodi ratione sed dolorum. env_variables: - - Molestias molestias. - - Et error veritatis. - - Asperiores exercitationem corrupti fuga earum. - - Sint et qui ab dolor et maxime. - in_placement: Eos et consequatur. - name: Aut deleniti earum exercitationem quis. + - Quidem est quaerat facere. + - Doloribus consequuntur nihil delectus impedit. + - Repellat reprehenderit odit rerum voluptate a. + in_placement: Sint et qui ab dolor et maxime. + name: Asperiores exercitationem corrupti fuga earum. oauth_flows: - - 81 - - 117 - - 105 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 102 - - 117 - - 103 - - 105 - - 97 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 116 - 32 - - 100 - - 101 - - 98 - - 105 - - 116 + - 99 + - 111 + - 114 + - 112 + - 111 + - 114 - 105 - 115 - 46 oauth_types: - - Illum non. - - In ipsum animi iure error. - - Dolore temporibus molestias molestiae est recusandae laudantium. - scheme: Id vitae est nostrum. - type: Dolorum possimus eum. + - Qui aut quia iusto. + - Natus ab sapiente perspiciatis et aliquam. + - Ea ipsa. + - Asperiores suscipit illum delectus sit aut debitis. + scheme: At sequi cum laborum et dignissimos. + type: Molestias consequuntur et error veritatis. server_variables: - - description: At sequi cum laborum et dignissimos. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - - description: At sequi cum laborum et dignissimos. + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + - description: Et ut error animi voluptate. env_variables: - - Ratione sed dolorum eius itaque. - - Aut quia iusto et. - - Ab sapiente perspiciatis. - slug: qnc + - Vel quia omnis. + - Iste cumque pariatur et qui sequi. + - Incidunt quas modi. + - Et eius est ea optio tempora quam. + slug: fj0 tool_urns: - - Sit nobis aut alias molestias laborum recusandae. - - Aperiam pariatur laboriosam qui porro nulla natus. - - Deleniti quia reiciendis accusamus eligendi fugiat. + - Voluptatum cumque dolorem. + - Magnam dicta placeat. + - Aspernatur et sunt ut odit. tools: - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - - id: Velit impedit est similique. - name: Minus ea minus cupiditate dignissimos repudiandae cumque. - tool_urn: Ut vel non nemo rerum sed. + - id: Odit quas molestiae ipsa cum esse. + name: Inventore eum aut et. + tool_urn: Dolor in error quia. type: prompt - updated_at: "1988-02-02T04:21:30Z" + updated_at: "2010-11-04T02:53:50Z" required: - id - project_id @@ -41834,7 +42113,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -41846,7 +42125,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -41861,7 +42140,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -41881,7 +42160,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: true @@ -41889,7 +42168,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -41920,18 +42199,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -41947,7 +42226,50 @@ definitions: fault: type: boolean description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false + description: an unexpected error occurred (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + ToolsetsAddExternalOAuthServerInvalidResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -41968,57 +42290,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: request contains one or more invalidation fields (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - ToolsetsAddExternalOAuthServerInvalidResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: request contains one or more invalidation fields (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false + timeout: true required: - name - id @@ -42053,14 +42332,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -42092,19 +42371,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -42120,8 +42399,8 @@ definitions: $ref: '#/definitions/ExternalOAuthServerForm' example: external_oauth_server: - metadata: Qui hic corrupti voluptate accusamus sunt. - slug: kgp + metadata: Pariatur blanditiis tempora molestiae. + slug: fyt required: - external_oauth_server ToolsetsAddExternalOAuthServerUnauthorizedResponseBody: @@ -42131,7 +42410,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42174,7 +42453,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42190,7 +42469,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -42202,7 +42481,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -42237,15 +42516,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -42260,7 +42539,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42276,19 +42555,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -42303,7 +42582,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42319,11 +42598,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: false @@ -42346,7 +42625,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42362,18 +42641,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -42389,7 +42668,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42405,14 +42684,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -42448,14 +42727,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -42502,8 +42781,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -42518,7 +42797,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42541,7 +42820,7 @@ definitions: example: true description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -42561,7 +42840,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42577,11 +42856,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: false @@ -42589,7 +42868,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -42604,7 +42883,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42624,15 +42903,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -42667,15 +42946,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -42690,7 +42969,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42706,19 +42985,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -42749,7 +43028,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -42796,15 +43075,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -42819,7 +43098,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42842,12 +43121,12 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -42862,7 +43141,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42921,7 +43200,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -42942,92 +43221,6 @@ definitions: - timeout - fault ToolsetsCloneToolsetNotFoundResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: false - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: resource not found (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - ToolsetsCloneToolsetUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: true - description: unauthorized access (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - ToolsetsCloneToolsetUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43055,9 +43248,9 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -43070,14 +43263,14 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetUnsupportedMediaResponseBody: + ToolsetsCloneToolsetUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43097,15 +43290,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unsupported media type (default view) + example: true + description: unauthorized access (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -43113,14 +43306,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetBadRequestResponseBody: + ToolsetsCloneToolsetUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43136,19 +43329,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (default view) + example: true + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -43156,14 +43349,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetConflictResponseBody: + ToolsetsCloneToolsetUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43179,19 +43372,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) + description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -43199,14 +43392,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetForbiddenResponseBody: + ToolsetsCreateToolsetBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43226,15 +43419,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: permission denied (default view) + example: false + description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -43242,7 +43435,7 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetGatewayErrorResponseBody: + ToolsetsCreateToolsetConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43265,19 +43458,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + example: true + description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -43285,14 +43478,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetInvalidResponseBody: + ToolsetsCreateToolsetForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43312,10 +43505,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: request contains one or more invalidation fields (default view) + example: false + description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -43328,14 +43521,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetInvariantViolationResponseBody: + ToolsetsCreateToolsetGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43351,18 +43544,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -43371,14 +43564,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetNotFoundResponseBody: + ToolsetsCreateToolsetInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43394,12 +43587,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: resource not found (default view) + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc @@ -43414,45 +43607,7 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetRequestBody: - title: ToolsetsCreateToolsetRequestBody - type: object - properties: - default_environment_slug: - type: string - description: The slug of the environment to use as the default for the toolset - example: 39i - pattern: ^[a-z0-9_-]{1,128}$ - maxLength: 40 - description: - type: string - description: Description of the toolset - example: Perspiciatis minus delectus est omnis minus laudantium. - name: - type: string - description: The name of the toolset - example: Odio non non sequi dolore maiores. - tool_urns: - type: array - items: - type: string - example: Asperiores consequatur. - description: List of tool URNs to include in the toolset - example: - - Autem in ut nulla minus. - - Laboriosam ducimus consequuntur exercitationem vel consequatur. - example: - default_environment_slug: zki - description: Et similique fuga et doloribus deserunt enim. - name: Consequatur mollitia aspernatur vitae sit. - tool_urns: - - Minus omnis minus. - - Adipisci iste quod perferendis optio. - - Expedita laborum voluptatibus expedita illum dicta delectus. - - Delectus aspernatur est. - required: - - name - ToolsetsCreateToolsetUnauthorizedResponseBody: + ToolsetsCreateToolsetInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43480,14 +43635,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (default view) + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -43495,14 +43650,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetUnexpectedResponseBody: + ToolsetsCreateToolsetNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43518,19 +43673,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: resource not found (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -43538,14 +43693,53 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetUnsupportedMediaResponseBody: + ToolsetsCreateToolsetRequestBody: + title: ToolsetsCreateToolsetRequestBody + type: object + properties: + default_environment_slug: + type: string + description: The slug of the environment to use as the default for the toolset + example: tx1 + pattern: ^[a-z0-9_-]{1,128}$ + maxLength: 40 + description: + type: string + description: Description of the toolset + example: Laborum voluptatibus expedita. + name: + type: string + description: The name of the toolset + example: Vero adipisci iste quod perferendis optio voluptate. + tool_urns: + type: array + items: + type: string + example: Dicta delectus enim delectus. + description: List of tool URNs to include in the toolset + example: + - Maiores neque error et consectetur. + - Qui deleniti sed ut. + - Quaerat consequatur quas. + - Eius asperiores eos. + example: + default_environment_slug: py9 + description: Voluptas odio eos. + name: Adipisci aliquam quis nulla repudiandae ut. + tool_urns: + - Aperiam ea labore et quo aperiam. + - Vitae ut ducimus qui aspernatur. + - Animi suscipit error consequatur. + required: + - name + ToolsetsCreateToolsetUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43565,15 +43759,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: unsupported media type (default view) + example: false + description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -43581,14 +43775,14 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetBadRequestResponseBody: + ToolsetsCreateToolsetUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43604,18 +43798,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: request is invalid (default view) + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -43624,7 +43818,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetConflictResponseBody: + ToolsetsCreateToolsetUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43652,14 +43846,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) + description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -43667,7 +43861,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetForbiddenResponseBody: + ToolsetsDeleteToolsetBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43690,12 +43884,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: request is invalid (default view) example: fault: true id: 123abc @@ -43710,7 +43904,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetGatewayErrorResponseBody: + ToolsetsDeleteToolsetConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43733,14 +43927,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + example: false + description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -43753,7 +43947,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetInvalidResponseBody: + ToolsetsDeleteToolsetForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43776,19 +43970,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: request contains one or more invalidation fields (default view) + example: true + description: permission denied (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -43796,7 +43990,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetInvariantViolationResponseBody: + ToolsetsDeleteToolsetGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43823,14 +44017,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -43839,7 +44033,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetNotFoundResponseBody: + ToolsetsDeleteToolsetInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43866,15 +44060,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource not found (default view) + example: true + description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -43882,14 +44076,14 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetUnauthorizedResponseBody: + ToolsetsDeleteToolsetInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43909,14 +44103,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (default view) + example: true + description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -43925,7 +44119,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetUnexpectedResponseBody: + ToolsetsDeleteToolsetNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43948,18 +44142,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: resource not found (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -43968,14 +44162,14 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetUnsupportedMediaResponseBody: + ToolsetsDeleteToolsetUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43991,19 +44185,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: unsupported media type (default view) + example: false + description: unauthorized access (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -44011,7 +44205,7 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetBadRequestResponseBody: + ToolsetsDeleteToolsetUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44034,14 +44228,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true - description: request is invalid (default view) + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -44054,14 +44248,14 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetConflictResponseBody: + ToolsetsDeleteToolsetUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44081,14 +44275,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource already exists (default view) + example: true + description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -44097,7 +44291,7 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetForbiddenResponseBody: + ToolsetsGetToolsetBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44125,9 +44319,9 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -44140,14 +44334,14 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetGatewayErrorResponseBody: + ToolsetsGetToolsetConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44163,12 +44357,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: resource already exists (default view) example: fault: false id: 123abc @@ -44183,14 +44377,14 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetInvalidResponseBody: + ToolsetsGetToolsetForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44206,14 +44400,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: request contains one or more invalidation fields (default view) + description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -44226,7 +44420,7 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetInvariantViolationResponseBody: + ToolsetsGetToolsetGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44249,7 +44443,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -44260,8 +44454,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -44269,14 +44463,14 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetNotFoundResponseBody: + ToolsetsGetToolsetInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44296,57 +44490,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource not found (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - ToolsetsGetToolsetUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: unauthorized access (default view) + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -44355,7 +44506,7 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetUnexpectedResponseBody: + ToolsetsGetToolsetInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44378,18 +44529,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -44398,14 +44549,14 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetUnsupportedMediaResponseBody: + ToolsetsGetToolsetNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44421,18 +44572,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true - description: unsupported media type (default view) + description: resource not found (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -44441,7 +44592,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsBadRequestResponseBody: + ToolsetsGetToolsetUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44468,15 +44619,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: request is invalid (default view) + example: false + description: unauthorized access (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -44484,14 +44635,14 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsConflictResponseBody: + ToolsetsGetToolsetUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44511,15 +44662,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource already exists (default view) + example: true + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -44527,14 +44678,14 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsForbiddenResponseBody: + ToolsetsGetToolsetUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44550,18 +44701,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: unsupported media type (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -44570,7 +44721,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsGatewayErrorResponseBody: + ToolsetsListToolsetsBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44598,7 +44749,7 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: request is invalid (default view) example: fault: false id: 123abc @@ -44613,14 +44764,14 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsInvalidResponseBody: + ToolsetsListToolsetsConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44641,14 +44792,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: request contains one or more invalidation fields (default view) + description: resource already exists (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -44656,14 +44807,14 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsInvariantViolationResponseBody: + ToolsetsListToolsetsForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44684,14 +44835,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: permission denied (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -44699,7 +44850,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsNotFoundResponseBody: + ToolsetsListToolsetsGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44726,15 +44877,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource not found (default view) + example: true + description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -44742,7 +44893,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsUnauthorizedResponseBody: + ToolsetsListToolsetsInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44770,14 +44921,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (default view) + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -44785,7 +44936,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsUnexpectedResponseBody: + ToolsetsListToolsetsInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44820,7 +44971,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -44828,7 +44979,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsUnsupportedMediaResponseBody: + ToolsetsListToolsetsNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44851,18 +45002,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true - description: unsupported media type (default view) + example: false + description: resource not found (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -44871,7 +45022,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerBadRequestResponseBody: + ToolsetsListToolsetsUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44898,15 +45049,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (default view) + example: true + description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -44914,7 +45065,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerConflictResponseBody: + ToolsetsListToolsetsUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44941,15 +45092,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource already exists (default view) + example: true + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -44957,7 +45108,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerForbiddenResponseBody: + ToolsetsListToolsetsUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44985,9 +45136,9 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -45000,7 +45151,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerGatewayErrorResponseBody: + ToolsetsRemoveOAuthServerBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45028,14 +45179,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -45043,7 +45194,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerInvalidResponseBody: + ToolsetsRemoveOAuthServerConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45066,12 +45217,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: request contains one or more invalidation fields (default view) + description: resource already exists (default view) example: fault: true id: 123abc @@ -45086,14 +45237,14 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerInvariantViolationResponseBody: + ToolsetsRemoveOAuthServerForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45109,19 +45260,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: permission denied (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -45129,7 +45280,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerNotFoundResponseBody: + ToolsetsRemoveOAuthServerGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45156,8 +45307,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource not found (default view) + example: true + description: an unexpected error occurred (default view) example: fault: false id: 123abc @@ -45172,14 +45323,14 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerUnauthorizedResponseBody: + ToolsetsRemoveOAuthServerInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45195,19 +45346,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true - description: unauthorized access (default view) + example: false + description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -45215,7 +45366,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerUnexpectedResponseBody: + ToolsetsRemoveOAuthServerInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45238,11 +45389,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true @@ -45258,7 +45409,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerUnsupportedMediaResponseBody: + ToolsetsRemoveOAuthServerNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45285,14 +45436,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unsupported media type (default view) + example: true + description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -45301,7 +45452,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetBadRequestResponseBody: + ToolsetsRemoveOAuthServerUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45324,19 +45475,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (default view) + example: true + description: unauthorized access (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -45344,7 +45495,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetConflictResponseBody: + ToolsetsRemoveOAuthServerUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45367,19 +45518,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: resource already exists (default view) + description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -45387,7 +45538,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetForbiddenResponseBody: + ToolsetsRemoveOAuthServerUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45410,19 +45561,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false - description: permission denied (default view) + example: true + description: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -45430,7 +45581,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetGatewayErrorResponseBody: + ToolsetsUpdateToolsetBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45458,14 +45609,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: request is invalid (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -45473,14 +45624,14 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetInvalidResponseBody: + ToolsetsUpdateToolsetConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45496,19 +45647,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true - description: request contains one or more invalidation fields (default view) + description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -45516,14 +45667,14 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetInvariantViolationResponseBody: + ToolsetsUpdateToolsetForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45539,14 +45690,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -45559,14 +45710,14 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetNotFoundResponseBody: + ToolsetsUpdateToolsetGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45582,19 +45733,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true - description: resource not found (default view) + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -45602,83 +45753,57 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetRequestBody: - title: ToolsetsUpdateToolsetRequestBody + ToolsetsUpdateToolsetInvalidResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: - custom_domain_id: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: type: string - description: The ID of the custom domain to use for the toolset - example: Aliquam veniam quis deserunt perferendis quod est. - default_environment_slug: + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: type: string - description: The slug of the environment to use as the default for the toolset - example: 85h - pattern: ^[a-z0-9_-]{1,128}$ - maxLength: 40 - description: + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: type: string - description: The new description of the toolset - example: Eos vero quaerat nobis vel. - mcp_enabled: + description: Name is the name of this class of errors. + example: bad_request + temporary: type: boolean - description: Whether the toolset is enabled for MCP - example: false - mcp_is_public: + description: Is the error temporary? + example: true + timeout: type: boolean - description: Whether the toolset is public in MCP + description: Is the error a timeout? example: false - mcp_slug: - type: string - description: The slug of the MCP to use for the toolset - example: flr - pattern: ^[a-z0-9_-]{1,128}$ - maxLength: 40 - name: - type: string - description: The new name of the toolset - example: Inventore fuga ut qui dignissimos impedit numquam. - prompt_template_names: - type: array - items: - type: string - example: Eveniet sed incidunt. - description: 'List of prompt template names to include (note: for actual prompts, not tools)' - example: - - Cum et debitis fugiat ipsam est voluptatibus. - - Rerum consequuntur sit tempore provident nisi occaecati. - tool_urns: - type: array - items: - type: string - example: Quis est. - description: List of tool URNs to include in the toolset - example: - - Veritatis aut. - - Aut voluptates eos. - - Voluptatem totam ut qui aut. + description: request contains one or more invalidation fields (default view) example: - custom_domain_id: Repellat non illum veritatis recusandae ipsa sit. - default_environment_slug: ygq - description: Ipsum fugit. - mcp_enabled: true - mcp_is_public: false - mcp_slug: gl8 - name: Odit suscipit quam voluptas. - prompt_template_names: - - Quo sequi aut corrupti. - - Numquam culpa aut ipsa. - tool_urns: - - Culpa est sunt est dolores dolores voluptatem. - - Fugiat esse impedit atque et quidem dicta. - ToolsetsUpdateToolsetUnauthorizedResponseBody: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + ToolsetsUpdateToolsetInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45694,12 +45819,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (default view) + example: true + description: an unexpected error occurred (default view) example: fault: false id: 123abc @@ -45714,7 +45839,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetUnexpectedResponseBody: + ToolsetsUpdateToolsetNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45742,7 +45867,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: an unexpected error occurred (default view) + description: resource not found (default view) example: fault: false id: 123abc @@ -45757,7 +45882,80 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetUnsupportedMediaResponseBody: + ToolsetsUpdateToolsetRequestBody: + title: ToolsetsUpdateToolsetRequestBody + type: object + properties: + custom_domain_id: + type: string + description: The ID of the custom domain to use for the toolset + example: Dicta provident qui et culpa debitis distinctio. + default_environment_slug: + type: string + description: The slug of the environment to use as the default for the toolset + example: jn5 + pattern: ^[a-z0-9_-]{1,128}$ + maxLength: 40 + description: + type: string + description: The new description of the toolset + example: Tempore provident nisi occaecati autem quis. + mcp_enabled: + type: boolean + description: Whether the toolset is enabled for MCP + example: true + mcp_is_public: + type: boolean + description: Whether the toolset is public in MCP + example: false + mcp_slug: + type: string + description: The slug of the MCP to use for the toolset + example: ljy + pattern: ^[a-z0-9_-]{1,128}$ + maxLength: 40 + name: + type: string + description: The new name of the toolset + example: Aut rerum consequuntur. + prompt_template_names: + type: array + items: + type: string + example: Reprehenderit aut voluptates eos. + description: 'List of prompt template names to include (note: for actual prompts, not tools)' + example: + - Totam ut qui aut. + - Optio delectus itaque omnis. + - Aut aliquam veniam. + tool_urns: + type: array + items: + type: string + example: Deserunt perferendis quod est inventore odit suscipit. + description: List of tool URNs to include in the toolset + example: + - Nihil ipsum fugit consequatur modi. + - Veritatis illo ut quo sequi aut. + - Aperiam numquam culpa aut ipsa qui. + - Culpa est sunt est dolores dolores voluptatem. + example: + custom_domain_id: Voluptatem ducimus eveniet voluptatibus esse. + default_environment_slug: jzn + description: Rerum deserunt ea saepe et esse. + mcp_enabled: true + mcp_is_public: true + mcp_slug: yjv + name: Repellat non illum veritatis recusandae ipsa sit. + prompt_template_names: + - Vel ea voluptatem consequuntur optio non. + - Dolores distinctio magnam quia. + - Veritatis doloremque. + - Ut voluptas. + tool_urns: + - Dolorem sit itaque. + - Facilis ut dolores maiores accusamus. + ToolsetsUpdateToolsetUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45785,7 +45983,7 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unsupported media type (default view) + description: unauthorized access (default view) example: fault: true id: 123abc @@ -45800,6 +45998,92 @@ definitions: - temporary - timeout - fault + ToolsetsUpdateToolsetUnexpectedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: an unexpected error occurred (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault + ToolsetsUpdateToolsetUnsupportedMediaResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: unsupported media type (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: true + required: + - name + - id + - message + - temporary + - timeout + - fault UpdatePackageResult: title: UpdatePackageResult type: object @@ -45808,23 +46092,23 @@ definitions: $ref: '#/definitions/Package' example: package: - created_at: "1988-09-16T15:02:15Z" - deleted_at: "2000-07-17T23:44:17Z" - description: Qui nostrum accusamus iure est. - description_raw: Vel aperiam deserunt laboriosam. - id: Quidem dolores dignissimos aut. - image_asset_id: Dignissimos fugit nihil dignissimos. + created_at: "1977-08-22T04:14:46Z" + deleted_at: "1989-10-23T12:39:33Z" + description: Doloremque repellat molestiae. + description_raw: Aut minima. + id: Dignissimos fugit nihil dignissimos. + image_asset_id: Ea nemo sunt aut qui reiciendis culpa. keywords: - - Et incidunt eaque quam numquam sit est. - - Hic et sed. - latest_version: Natus quos officia quisquam. - name: Atque cumque perferendis accusantium voluptate vel. - organization_id: Enim quia nobis. - project_id: Culpa illum reiciendis qui error et. - summary: Placeat velit voluptas fugit. - title: Vel quibusdam excepturi. - updated_at: "2012-07-30T23:21:39Z" - url: Optio non reiciendis. + - Amet iusto numquam saepe ex architecto. + - Possimus est. + latest_version: Aliquam ad labore dolor aut quam voluptatum. + name: Officiis impedit vel. + organization_id: Adipisci suscipit vitae cupiditate provident qui. + project_id: Natus quos officia quisquam. + summary: Aut minus. + title: Provident qui ut sed et. + updated_at: "2012-11-12T16:52:50Z" + url: Ut facere quasi magni cum sit. required: - package UpdatePromptTemplateResult: @@ -45836,53 +46120,54 @@ definitions: example: template: canonical: - confirm: Laudantium sapiente aut. - confirm_prompt: Natus labore. - description: Reprehenderit sequi veniam officia ut voluptate. - name: Eligendi facere et fuga esse. - summarizer: Sed aliquam. - summary: Quos atque dolores tenetur vel sed distinctio. + confirm: At tempora voluptatem ullam consectetur impedit. + confirm_prompt: Nihil quo voluptatem. + description: Explicabo perspiciatis vero. + name: Vero voluptatem excepturi modi iusto. + summarizer: Deleniti voluptas dolorem et exercitationem unde placeat. + summary: Ut et velit facere. tags: - - Nesciunt incidunt voluptatem sit veritatis. - - Aliquam et possimus et iusto facere. - variation_id: Debitis doloribus. - canonical_name: Ut et quis nesciunt autem deserunt laudantium. - confirm: Sit illum porro impedit. - confirm_prompt: Harum aut ratione cupiditate et ipsam. - created_at: "1996-10-20T02:24:39Z" - description: Quia omnis reiciendis. + - Voluptas nulla culpa corporis vel nam. + - Aut ut voluptas et quo. + variation_id: Et possimus et iusto facere. + canonical_name: Incidunt quia sed sint quo tempore et. + confirm: Ut inventore voluptates vitae ducimus. + confirm_prompt: Delectus saepe qui tempore. + created_at: "1996-10-25T11:46:13Z" + description: Mollitia cupiditate. engine: mustache - history_id: Nam ea consequatur et sit rem. - id: Rem similique quos voluptates enim voluptate quia. - kind: prompt - name: Ullam unde quam quasi cupiditate exercitationem maiores. - predecessor_id: Et quia nemo sed ut. - project_id: Eius sint. - prompt: Odit blanditiis eos laboriosam eum. - schema: Nesciunt quia et. - schema_version: Fugit et. - summarizer: Et exercitationem. - tool_urn: Sapiente eos architecto odio. + history_id: Unde quam quasi cupiditate. + id: Et exercitationem. + kind: higher_order_tool + name: Explicabo aut iusto sit eveniet in. + predecessor_id: Maiores enim ut et quis nesciunt. + project_id: Assumenda libero alias aliquam quasi. + prompt: Deserunt laudantium excepturi quia omnis. + schema: Natus culpa. + schema_version: Veniam dolorem recusandae consequatur veritatis. + summarizer: Mollitia pariatur vitae assumenda voluptate. + tool_urn: Magnam libero. tools_hint: - - Repellat sed quia sed quas excepturi rerum. - - Optio ex eveniet ratione nisi iste. - - Maiores ea in minus consectetur nemo. - updated_at: "1992-03-02T06:20:38Z" + - Eos nesciunt. + - Et et sit illum porro. + - Asperiores harum aut ratione cupiditate et ipsam. + updated_at: "1994-07-10T08:42:31Z" variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - template UploadFunctionsResult: @@ -45893,13 +46178,13 @@ definitions: $ref: '#/definitions/Asset' example: asset: - content_length: 7034713796615647979 - content_type: Iure aut. - created_at: "2004-10-04T04:44:01Z" - id: Omnis corporis ex tenetur distinctio. - kind: image - sha256: Nihil vel est ea debitis ex. - updated_at: "1970-02-28T13:05:31Z" + content_length: 1132377214323733000 + content_type: Labore repellat ut quae nostrum. + created_at: "1995-06-21T21:27:59Z" + id: Magni sit nemo. + kind: unknown + sha256: Quas praesentium voluptatem quo. + updated_at: "1983-08-25T01:13:59Z" required: - asset UploadImageResult: @@ -45910,13 +46195,13 @@ definitions: $ref: '#/definitions/Asset' example: asset: - content_length: 7034713796615647979 - content_type: Iure aut. - created_at: "2004-10-04T04:44:01Z" - id: Omnis corporis ex tenetur distinctio. - kind: image - sha256: Nihil vel est ea debitis ex. - updated_at: "1970-02-28T13:05:31Z" + content_length: 1132377214323733000 + content_type: Labore repellat ut quae nostrum. + created_at: "1995-06-21T21:27:59Z" + id: Magni sit nemo. + kind: unknown + sha256: Quas praesentium voluptatem quo. + updated_at: "1983-08-25T01:13:59Z" required: - asset UploadOpenAPIv3Result: @@ -45927,13 +46212,13 @@ definitions: $ref: '#/definitions/Asset' example: asset: - content_length: 7034713796615647979 - content_type: Iure aut. - created_at: "2004-10-04T04:44:01Z" - id: Omnis corporis ex tenetur distinctio. - kind: image - sha256: Nihil vel est ea debitis ex. - updated_at: "1970-02-28T13:05:31Z" + content_length: 1132377214323733000 + content_type: Labore repellat ut quae nostrum. + created_at: "1995-06-21T21:27:59Z" + id: Magni sit nemo. + kind: unknown + sha256: Quas praesentium voluptatem quo. + updated_at: "1983-08-25T01:13:59Z" required: - asset UpsertGlobalToolVariationResult: @@ -45944,20 +46229,21 @@ definitions: $ref: '#/definitions/ToolVariation' example: variation: - confirm: At tempora voluptatem ullam consectetur impedit. - confirm_prompt: Nihil quo voluptatem. - created_at: Vel delectus error sed iste. - description: Corporis vel. - group_id: Ut et velit facere. - id: Vero voluptatem excepturi modi iusto. - name: Deleniti voluptas dolorem et exercitationem unde placeat. - src_tool_name: Explicabo perspiciatis vero. - summarizer: Optio ducimus quia aut modi. - summary: Omnis voluptas nulla. + confirm: Qui incidunt distinctio omnis laboriosam. + confirm_prompt: Nam ea consequatur et sit rem. + created_at: Quia maiores sapiente eos. + description: Laudantium nam quas repellat sed quia sed. + group_id: Optio ducimus quia aut modi. + id: Commodi aliquam odio nesciunt laboriosam consequatur. + name: Et quia nemo sed ut. + src_tool_name: Vel delectus error sed iste. + summarizer: Nemo explicabo rem similique quos voluptates enim. + summary: Odit blanditiis eos laboriosam eum. tags: - - Aut ut voluptas et quo. - - Commodi aliquam odio nesciunt laboriosam consequatur. - updated_at: Qui incidunt distinctio omnis laboriosam. + - Rerum rerum optio. + - Eveniet ratione nisi. + - Officiis maiores ea in minus. + updated_at: Odio est eius sint itaque. required: - variation UsageCreateCheckoutBadRequestResponseBody: @@ -45967,7 +46253,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45983,19 +46269,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -46010,7 +46296,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46026,18 +46312,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -46053,7 +46339,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46069,19 +46355,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -46096,7 +46382,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46124,7 +46410,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -46155,19 +46441,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -46182,7 +46468,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46225,7 +46511,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46252,8 +46538,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -46268,7 +46554,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46284,55 +46570,12 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: unauthorized access (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: false - required: - - name - - id - - message - - temporary - - timeout - - fault - UsageCreateCheckoutUnexpectedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) example: fault: true id: 123abc @@ -46347,7 +46590,7 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutUnsupportedMediaResponseBody: + UsageCreateCheckoutUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46375,9 +46618,9 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: unsupported media type (default view) + description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -46390,7 +46633,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionBadRequestResponseBody: + UsageCreateCheckoutUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46413,18 +46656,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false - description: request is invalid (default view) + description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -46433,7 +46676,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionConflictResponseBody: + UsageCreateCustomerSessionBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46460,51 +46703,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource already exists (default view) - example: - fault: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - UsageCreateCustomerSessionForbiddenResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: permission denied (default view) + description: request is invalid (default view) example: fault: false id: 123abc @@ -46519,7 +46719,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionGatewayErrorResponseBody: + UsageCreateCustomerSessionConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46542,11 +46742,97 @@ definitions: temporary: type: boolean description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? example: false + description: resource already exists (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + UsageCreateCustomerSessionForbiddenResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true timeout: type: boolean description: Is the error a timeout? + example: true + description: permission denied (default view) + example: + fault: false + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + UsageCreateCustomerSessionGatewayErrorResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? example: false + timeout: + type: boolean + description: Is the error a timeout? + example: true description: an unexpected error occurred (default view) example: fault: false @@ -46554,7 +46840,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -46589,15 +46875,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -46635,7 +46921,7 @@ definitions: example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -46655,7 +46941,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46675,15 +46961,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -46698,7 +46984,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46718,7 +47004,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: false @@ -46741,7 +47027,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46768,7 +47054,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -46804,15 +47090,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -46827,7 +47113,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46850,12 +47136,12 @@ definitions: example: true description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -46870,7 +47156,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46886,11 +47172,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: false @@ -46936,11 +47222,11 @@ definitions: example: false description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -46972,18 +47258,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -47022,11 +47308,11 @@ definitions: example: false description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -47058,19 +47344,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -47085,7 +47371,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47101,7 +47387,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -47112,8 +47398,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -47144,7 +47430,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -47155,7 +47441,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -47198,7 +47484,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -47214,7 +47500,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47234,7 +47520,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: true @@ -47242,7 +47528,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -47277,15 +47563,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -47300,7 +47586,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47320,7 +47606,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: true @@ -47328,7 +47614,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -47343,7 +47629,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47359,18 +47645,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -47402,11 +47688,11 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: fault: false @@ -47445,14 +47731,14 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request contains one or more invalidation fields (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -47488,7 +47774,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -47499,7 +47785,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -47531,7 +47817,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -47552,49 +47838,6 @@ definitions: - timeout - fault UsageGetUsageTiersUnauthorizedResponseBody: - title: 'Mediatype identifier: application/vnd.goa.error; view=default' - type: object - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request - temporary: - type: boolean - description: Is the error temporary? - example: true - timeout: - type: boolean - description: Is the error a timeout? - example: false - description: unauthorized access (default view) - example: - fault: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: true - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault - UsageGetUsageTiersUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47622,6 +47865,49 @@ definitions: type: boolean description: Is the error a timeout? example: true + description: unauthorized access (default view) + example: + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: true + timeout: false + required: + - name + - id + - message + - temporary + - timeout + - fault + UsageGetUsageTiersUnexpectedResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' + type: object + properties: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: bad_request + temporary: + type: boolean + description: Is the error temporary? + example: true + timeout: + type: boolean + description: Is the error a timeout? + example: false description: an unexpected error occurred (default view) example: fault: true @@ -47667,12 +47953,12 @@ definitions: example: false description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -47693,73 +47979,70 @@ definitions: example: enterprise: add_on_bullets: + - Qui molestias voluptates quidem minus et. + - Accusantium ea molestiae. + - Repudiandae explicabo tenetur. + base_price: 0.5484396811061183 + feature_bullets: + - Optio quidem quidem assumenda cupiditate ad. + - Tempora tenetur accusamus omnis. + - Nam quisquam unde velit aut nihil sapiente. + - Dolores expedita dicta qui rerum. + included_bullets: - Porro recusandae excepturi. - Eum voluptatibus et sit laudantium ducimus. - Et reprehenderit amet laboriosam tempore et veniam. - Vel officia similique temporibus est. - base_price: 0.13466192828789703 + included_credits: 4071120265921802035 + included_servers: 5321693193885762111 + included_tool_calls: 4527521988887562542 + price_per_additional_credit: 0.10077546942540597 + price_per_additional_server: 0.4510383707119032 + price_per_additional_tool_call: 0.6398107655385122 + free: + add_on_bullets: + - Qui molestias voluptates quidem minus et. + - Accusantium ea molestiae. + - Repudiandae explicabo tenetur. + base_price: 0.5484396811061183 feature_bullets: - - Sed est dolorem ab earum numquam perferendis. - - Voluptas eaque incidunt voluptatem suscipit veniam. - - Est accusantium voluptas porro. - - Quas voluptatum eius facilis ut numquam tenetur. - included_bullets: - - Quidem quidem assumenda cupiditate ad quae tempora. - - Accusamus omnis. + - Optio quidem quidem assumenda cupiditate ad. + - Tempora tenetur accusamus omnis. - Nam quisquam unde velit aut nihil sapiente. - Dolores expedita dicta qui rerum. - included_credits: 2587719529957697371 - included_servers: 7314720617676342212 - included_tool_calls: 3908809275888227304 - price_per_additional_credit: 0.5622278418654515 - price_per_additional_server: 0.8508006261170875 - price_per_additional_tool_call: 0.8653211335896781 - free: - add_on_bullets: + included_bullets: - Porro recusandae excepturi. - Eum voluptatibus et sit laudantium ducimus. - Et reprehenderit amet laboriosam tempore et veniam. - Vel officia similique temporibus est. - base_price: 0.13466192828789703 + included_credits: 4071120265921802035 + included_servers: 5321693193885762111 + included_tool_calls: 4527521988887562542 + price_per_additional_credit: 0.10077546942540597 + price_per_additional_server: 0.4510383707119032 + price_per_additional_tool_call: 0.6398107655385122 + pro: + add_on_bullets: + - Qui molestias voluptates quidem minus et. + - Accusantium ea molestiae. + - Repudiandae explicabo tenetur. + base_price: 0.5484396811061183 feature_bullets: - - Sed est dolorem ab earum numquam perferendis. - - Voluptas eaque incidunt voluptatem suscipit veniam. - - Est accusantium voluptas porro. - - Quas voluptatum eius facilis ut numquam tenetur. - included_bullets: - - Quidem quidem assumenda cupiditate ad quae tempora. - - Accusamus omnis. + - Optio quidem quidem assumenda cupiditate ad. + - Tempora tenetur accusamus omnis. - Nam quisquam unde velit aut nihil sapiente. - Dolores expedita dicta qui rerum. - included_credits: 2587719529957697371 - included_servers: 7314720617676342212 - included_tool_calls: 3908809275888227304 - price_per_additional_credit: 0.5622278418654515 - price_per_additional_server: 0.8508006261170875 - price_per_additional_tool_call: 0.8653211335896781 - pro: - add_on_bullets: + included_bullets: - Porro recusandae excepturi. - Eum voluptatibus et sit laudantium ducimus. - Et reprehenderit amet laboriosam tempore et veniam. - Vel officia similique temporibus est. - base_price: 0.13466192828789703 - feature_bullets: - - Sed est dolorem ab earum numquam perferendis. - - Voluptas eaque incidunt voluptatem suscipit veniam. - - Est accusantium voluptas porro. - - Quas voluptatum eius facilis ut numquam tenetur. - included_bullets: - - Quidem quidem assumenda cupiditate ad quae tempora. - - Accusamus omnis. - - Nam quisquam unde velit aut nihil sapiente. - - Dolores expedita dicta qui rerum. - included_credits: 2587719529957697371 - included_servers: 7314720617676342212 - included_tool_calls: 3908809275888227304 - price_per_additional_credit: 0.5622278418654515 - price_per_additional_server: 0.8508006261170875 - price_per_additional_tool_call: 0.8653211335896781 + included_credits: 4071120265921802035 + included_servers: 5321693193885762111 + included_tool_calls: 4527521988887562542 + price_per_additional_credit: 0.10077546942540597 + price_per_additional_server: 0.4510383707119032 + price_per_additional_tool_call: 0.6398107655385122 required: - free - pro @@ -47791,15 +48074,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -47834,14 +48117,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -47880,7 +48163,7 @@ definitions: example: true description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -47900,7 +48183,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47916,18 +48199,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -47970,7 +48253,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -47986,7 +48269,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48002,18 +48285,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -48029,7 +48312,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48045,7 +48328,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -48057,7 +48340,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -48072,7 +48355,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48092,7 +48375,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: true @@ -48138,12 +48421,12 @@ definitions: example: false description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -48158,7 +48441,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48174,7 +48457,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -48186,7 +48469,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -48217,19 +48500,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -48244,7 +48527,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48264,14 +48547,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -48287,7 +48570,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48303,19 +48586,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -48330,7 +48613,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48346,7 +48629,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -48357,7 +48640,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -48373,7 +48656,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48389,19 +48672,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? example: true description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -48436,15 +48719,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -48459,7 +48742,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48479,14 +48762,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -48518,18 +48801,18 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -48545,7 +48828,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48565,15 +48848,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -48604,7 +48887,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -48615,8 +48898,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -48647,7 +48930,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -48658,8 +48941,8 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -48674,7 +48957,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48690,19 +48973,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: true description: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -48733,19 +49016,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? example: false description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -48780,15 +49063,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -48826,7 +49109,7 @@ definitions: example: true description: request contains one or more invalidation fields (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -48862,19 +49145,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -48889,7 +49172,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -48909,14 +49192,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -48940,47 +49223,50 @@ definitions: confirm_prompt: type: string description: The confirmation prompt for the tool variation - example: Eos pariatur soluta est soluta. + example: Ut quae ex suscipit. description: type: string description: The description of the tool variation - example: Expedita ut non ullam consequatur vitae. + example: Sit eius. name: type: string description: The name of the tool variation - example: Recusandae perferendis accusantium temporibus cupiditate impedit. + example: Occaecati sit qui qui dolores. src_tool_name: type: string description: The name of the source tool - example: Et cupiditate voluptas enim aut. + example: Eligendi aliquid. summarizer: type: string description: The summarizer of the tool variation - example: Cupiditate et enim et sunt deleniti. + example: Beatae voluptas et nobis iure in. summary: type: string description: The summary of the tool variation - example: Dolore aut. + example: Quod enim. tags: type: array items: type: string - example: Voluptatibus sed. + example: Voluptas voluptatum quis optio suscipit amet esse. description: The tags of the tool variation example: - - Earum eos. - - A aliquam consequuntur odit quae qui. + - Non ab vel repudiandae ipsa qui. + - Et ut omnis sunt. + - Incidunt fugiat quos necessitatibus tempore. example: confirm: always - confirm_prompt: Laudantium aperiam. - description: Et occaecati sit qui qui dolores iste. - name: Facilis officia ut dolorem dolore quas et. - src_tool_name: Sint ut. - summarizer: Mollitia non ab vel repudiandae ipsa qui. - summary: Aliquid laboriosam eum ut quae ex. + confirm_prompt: Quibusdam voluptates tempora debitis sequi alias. + description: Sit illo similique deleniti aperiam voluptatum et. + name: Maiores laudantium. + src_tool_name: Porro amet dolorem necessitatibus. + summarizer: Laborum voluptatem reiciendis voluptas. + summary: Fugiat est earum. tags: - - Vero sit eius. - - Voluptas voluptatum quis optio suscipit amet esse. + - Harum ducimus suscipit velit. + - Magnam illum qui. + - Esse perspiciatis laboriosam ex sit. + - Quas facilis nesciunt aut repudiandae praesentium aspernatur. required: - src_tool_name VariationsUpsertGlobalUnauthorizedResponseBody: @@ -49010,10 +49296,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -49033,7 +49319,7 @@ definitions: fault: type: boolean description: Is the error a server-side fault? - example: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -49049,19 +49335,19 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -49099,11 +49385,11 @@ definitions: example: false description: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name diff --git a/server/gen/http/packages/client/cli.go b/server/gen/http/packages/client/cli.go index 85633fc63..12d765c12 100644 --- a/server/gen/http/packages/client/cli.go +++ b/server/gen/http/packages/client/cli.go @@ -24,7 +24,7 @@ func BuildCreatePackagePayload(packagesCreatePackageBody string, packagesCreateP { err = json.Unmarshal([]byte(packagesCreatePackageBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"description\": \"iad\",\n \"image_asset_id\": \"jyc\",\n \"keywords\": [\n \"Est sed.\",\n \"Est eum necessitatibus minima asperiores sapiente.\",\n \"Dignissimos sed minus.\"\n ],\n \"name\": \"cle\",\n \"summary\": \"l8u\",\n \"title\": \"vwe\",\n \"url\": \"sp6\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"description\": \"1nr\",\n \"image_asset_id\": \"9pf\",\n \"keywords\": [\n \"Est vel quibusdam.\",\n \"At placeat velit voluptas fugit nostrum.\",\n \"Nostrum accusamus iure est totam vel.\"\n ],\n \"name\": \"n2f\",\n \"summary\": \"rjy\",\n \"title\": \"pp2\",\n \"url\": \"4p2\"\n }'") } err = goa.MergeErrors(err, goa.ValidatePattern("body.name", body.Name, "^[a-z0-9_-]{1,128}$")) if utf8.RuneCountInString(body.Name) > 100 { @@ -105,7 +105,7 @@ func BuildUpdatePackagePayload(packagesUpdatePackageBody string, packagesUpdateP { err = json.Unmarshal([]byte(packagesUpdatePackageBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"description\": \"i4f\",\n \"id\": \"w0v\",\n \"image_asset_id\": \"o52\",\n \"keywords\": [\n \"Neque alias sequi praesentium deserunt.\",\n \"Et quae aut nesciunt veritatis voluptates.\",\n \"Sed corporis.\"\n ],\n \"summary\": \"s5g\",\n \"title\": \"vmk\",\n \"url\": \"uag\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"description\": \"lu4\",\n \"id\": \"wv2\",\n \"image_asset_id\": \"m54\",\n \"keywords\": [\n \"Eaque deleniti.\",\n \"Id quidem sit unde.\",\n \"Sunt pariatur asperiores odit quidem.\"\n ],\n \"summary\": \"ixs\",\n \"title\": \"id1\",\n \"url\": \"h69\"\n }'") } if utf8.RuneCountInString(body.ID) > 50 { err = goa.MergeErrors(err, goa.InvalidLengthError("body.id", body.ID, utf8.RuneCountInString(body.ID), 50, false)) @@ -252,7 +252,7 @@ func BuildPublishPayload(packagesPublishBody string, packagesPublishApikeyToken { err = json.Unmarshal([]byte(packagesPublishBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"deployment_id\": \"Consequatur facilis quibusdam quae ex.\",\n \"name\": \"Eligendi ex.\",\n \"version\": \"Ratione repudiandae voluptas eligendi suscipit asperiores ea.\",\n \"visibility\": \"private\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"deployment_id\": \"Excepturi libero.\",\n \"name\": \"Ipsa facere nulla.\",\n \"version\": \"Voluptatibus occaecati provident.\",\n \"visibility\": \"private\"\n }'") } if !(body.Visibility == "public" || body.Visibility == "private") { err = goa.MergeErrors(err, goa.InvalidEnumValueError("body.visibility", body.Visibility, []any{"public", "private"})) diff --git a/server/gen/http/projects/client/cli.go b/server/gen/http/projects/client/cli.go index 131266a71..f02a928f0 100644 --- a/server/gen/http/projects/client/cli.go +++ b/server/gen/http/projects/client/cli.go @@ -24,7 +24,7 @@ func BuildCreateProjectPayload(projectsCreateProjectBody string, projectsCreateP { err = json.Unmarshal([]byte(projectsCreateProjectBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"name\": \"who\",\n \"organization_id\": \"Occaecati provident nostrum excepturi libero et.\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"name\": \"bme\",\n \"organization_id\": \"Cum voluptatem est maiores dolores voluptatem natus.\"\n }'") } if utf8.RuneCountInString(body.Name) > 40 { err = goa.MergeErrors(err, goa.InvalidLengthError("body.name", body.Name, utf8.RuneCountInString(body.Name), 40, false)) @@ -90,7 +90,7 @@ func BuildSetLogoPayload(projectsSetLogoBody string, projectsSetLogoApikeyToken { err = json.Unmarshal([]byte(projectsSetLogoBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"asset_id\": \"Velit est.\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"asset_id\": \"Qui praesentium numquam quisquam quisquam et.\"\n }'") } } var apikeyToken *string diff --git a/server/gen/http/slack/client/cli.go b/server/gen/http/slack/client/cli.go index 755b12d0b..b1b014ecd 100644 --- a/server/gen/http/slack/client/cli.go +++ b/server/gen/http/slack/client/cli.go @@ -89,7 +89,7 @@ func BuildUpdateSlackConnectionPayload(slackUpdateSlackConnectionBody string, sl { err = json.Unmarshal([]byte(slackUpdateSlackConnectionBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"default_toolset_slug\": \"Qui dolor.\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"default_toolset_slug\": \"Odio eligendi nam.\"\n }'") } } var sessionToken *string diff --git a/server/gen/http/templates/client/cli.go b/server/gen/http/templates/client/cli.go index fcb41697d..ca1a89f28 100644 --- a/server/gen/http/templates/client/cli.go +++ b/server/gen/http/templates/client/cli.go @@ -25,7 +25,7 @@ func BuildCreateTemplatePayload(templatesCreateTemplateBody string, templatesCre { err = json.Unmarshal([]byte(templatesCreateTemplateBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"arguments\": \"{\\\"name\\\":\\\"example\\\",\\\"email\\\":\\\"mail@example.com\\\"}\",\n \"description\": \"Aut error in velit quos ea.\",\n \"engine\": \"mustache\",\n \"kind\": \"higher_order_tool\",\n \"name\": \"vcl\",\n \"prompt\": \"Quidem aut.\",\n \"tools_hint\": [\n \"Officia magni est odit corporis necessitatibus molestias.\",\n \"Ut sed.\",\n \"Impedit consequatur nemo est consequatur quasi et.\"\n ]\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"arguments\": \"{\\\"name\\\":\\\"example\\\",\\\"email\\\":\\\"mail@example.com\\\"}\",\n \"description\": \"Laudantium laudantium natus.\",\n \"engine\": \"mustache\",\n \"kind\": \"prompt\",\n \"name\": \"u87\",\n \"prompt\": \"Sint expedita excepturi dolorem iure.\",\n \"tools_hint\": [\n \"Enim quia non facere.\",\n \"Accusantium esse quia asperiores impedit.\",\n \"Omnis voluptatum velit nam.\"\n ]\n }'") } err = goa.MergeErrors(err, goa.ValidatePattern("body.name", body.Name, "^[a-z0-9_-]{1,128}$")) if utf8.RuneCountInString(body.Name) > 40 { @@ -94,7 +94,7 @@ func BuildUpdateTemplatePayload(templatesUpdateTemplateBody string, templatesUpd { err = json.Unmarshal([]byte(templatesUpdateTemplateBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"arguments\": \"{\\\"name\\\":\\\"example\\\",\\\"email\\\":\\\"mail@example.com\\\"}\",\n \"description\": \"Qui veritatis aperiam iste.\",\n \"engine\": \"mustache\",\n \"id\": \"Nihil et dolores cum.\",\n \"kind\": \"higher_order_tool\",\n \"prompt\": \"Facere cumque nihil vitae eaque necessitatibus.\",\n \"tools_hint\": [\n \"Sint non iste rerum repellat quia sed.\",\n \"Dicta minima quis atque similique ullam.\",\n \"Rerum quas consequatur sed sint.\"\n ]\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"arguments\": \"{\\\"name\\\":\\\"example\\\",\\\"email\\\":\\\"mail@example.com\\\"}\",\n \"description\": \"Et debitis.\",\n \"engine\": \"mustache\",\n \"id\": \"Iure temporibus voluptas voluptatem omnis.\",\n \"kind\": \"prompt\",\n \"prompt\": \"Commodi suscipit ut dignissimos.\",\n \"tools_hint\": [\n \"Est dolorem corporis qui provident.\",\n \"Corrupti eum vel atque voluptas asperiores.\",\n \"Quia quia architecto quia ut rem.\"\n ]\n }'") } if body.Arguments != nil { err = goa.MergeErrors(err, goa.ValidateFormat("body.arguments", *body.Arguments, goa.FormatJSON)) @@ -278,7 +278,7 @@ func BuildRenderTemplateByIDPayload(templatesRenderTemplateByIDBody string, temp { err = json.Unmarshal([]byte(templatesRenderTemplateByIDBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"arguments\": {\n \"Eius cumque maiores.\": \"Qui quaerat tempore eos et libero animi.\"\n }\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"arguments\": {\n \"Est quia vel alias aut.\": \"Sit soluta quisquam.\"\n }\n }'") } if body.Arguments == nil { err = goa.MergeErrors(err, goa.MissingFieldError("arguments", "body")) @@ -334,7 +334,7 @@ func BuildRenderTemplatePayload(templatesRenderTemplateBody string, templatesRen { err = json.Unmarshal([]byte(templatesRenderTemplateBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"arguments\": {\n \"Alias aut quaerat sit soluta quisquam.\": \"Vel qui.\",\n \"Architecto at saepe quibusdam.\": \"Voluptate iure ut consectetur quis ullam.\",\n \"Sapiente odio nesciunt inventore.\": \"Eveniet repudiandae excepturi delectus est quia.\"\n },\n \"engine\": \"mustache\",\n \"kind\": \"higher_order_tool\",\n \"prompt\": \"Excepturi perspiciatis.\"\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"arguments\": {\n \"Eius a quod architecto.\": \"Aspernatur corrupti quisquam voluptatem incidunt minus dolorem.\",\n \"Et architecto.\": \"Minus ea dolorem repudiandae et.\",\n \"Minus aspernatur architecto ex tempore.\": \"Autem et.\"\n },\n \"engine\": \"mustache\",\n \"kind\": \"higher_order_tool\",\n \"prompt\": \"Et aliquam nihil vel molestiae cumque tenetur.\"\n }'") } if body.Arguments == nil { err = goa.MergeErrors(err, goa.MissingFieldError("arguments", "body")) diff --git a/server/gen/http/toolsets/client/cli.go b/server/gen/http/toolsets/client/cli.go index 7df7b018f..7626b8ad5 100644 --- a/server/gen/http/toolsets/client/cli.go +++ b/server/gen/http/toolsets/client/cli.go @@ -25,7 +25,7 @@ func BuildCreateToolsetPayload(toolsetsCreateToolsetBody string, toolsetsCreateT { err = json.Unmarshal([]byte(toolsetsCreateToolsetBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"default_environment_slug\": \"vtf\",\n \"description\": \"Mollitia ut quia eveniet.\",\n \"name\": \"Delectus voluptas ut voluptas sed.\",\n \"tool_urns\": [\n \"Voluptatem laudantium delectus.\",\n \"Sed omnis fugit voluptatem reiciendis cupiditate dolores.\",\n \"Minus velit id distinctio quasi fuga eius.\",\n \"Error in ipsum dolor ipsa.\"\n ]\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"default_environment_slug\": \"h0h\",\n \"description\": \"Nisi quis pariatur.\",\n \"name\": \"Deserunt provident nam tempore veritatis occaecati.\",\n \"tool_urns\": [\n \"Expedita eos enim ab voluptate quia et.\",\n \"Incidunt qui ea at dignissimos libero.\",\n \"Voluptatum nihil.\",\n \"Labore officiis quam.\"\n ]\n }'") } if body.DefaultEnvironmentSlug != nil { err = goa.MergeErrors(err, goa.ValidatePattern("body.default_environment_slug", *body.DefaultEnvironmentSlug, "^[a-z0-9_-]{1,128}$")) @@ -101,7 +101,7 @@ func BuildUpdateToolsetPayload(toolsetsUpdateToolsetBody string, toolsetsUpdateT { err = json.Unmarshal([]byte(toolsetsUpdateToolsetBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"custom_domain_id\": \"Quos ut consequatur illo.\",\n \"default_environment_slug\": \"czh\",\n \"description\": \"Eum praesentium consequatur sed similique velit neque.\",\n \"mcp_enabled\": true,\n \"mcp_is_public\": true,\n \"mcp_slug\": \"qsh\",\n \"name\": \"Officiis consequatur esse voluptas aperiam accusamus.\",\n \"prompt_template_names\": [\n \"Rerum temporibus et officiis nihil aut voluptate.\",\n \"Mollitia qui rem iste laudantium quisquam quis.\"\n ],\n \"tool_urns\": [\n \"Aut voluptate in dolorem aliquam.\",\n \"Quis id laboriosam.\",\n \"Tenetur quis sapiente enim ut quia.\",\n \"Ab architecto.\"\n ]\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"custom_domain_id\": \"Qui maxime dolorem sequi.\",\n \"default_environment_slug\": \"lr4\",\n \"description\": \"Sapiente enim ut quia.\",\n \"mcp_enabled\": false,\n \"mcp_is_public\": false,\n \"mcp_slug\": \"tb2\",\n \"name\": \"Expedita tenetur.\",\n \"prompt_template_names\": [\n \"Aspernatur quidem doloremque suscipit quos ut.\",\n \"Illo expedita dicta.\",\n \"Tempore at.\",\n \"Aut consectetur dolorem.\"\n ],\n \"tool_urns\": [\n \"Voluptatem quis unde enim sint error.\",\n \"Saepe eius aperiam.\",\n \"Soluta aperiam consequatur quis reprehenderit.\"\n ]\n }'") } if body.DefaultEnvironmentSlug != nil { err = goa.MergeErrors(err, goa.ValidatePattern("body.default_environment_slug", *body.DefaultEnvironmentSlug, "^[a-z0-9_-]{1,128}$")) @@ -328,7 +328,7 @@ func BuildAddExternalOAuthServerPayload(toolsetsAddExternalOAuthServerBody strin { err = json.Unmarshal([]byte(toolsetsAddExternalOAuthServerBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"external_oauth_server\": {\n \"metadata\": \"Qui hic corrupti voluptate accusamus sunt.\",\n \"slug\": \"kgp\"\n }\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"external_oauth_server\": {\n \"metadata\": \"Pariatur blanditiis tempora molestiae.\",\n \"slug\": \"fyt\"\n }\n }'") } if body.ExternalOauthServer == nil { err = goa.MergeErrors(err, goa.MissingFieldError("external_oauth_server", "body")) diff --git a/server/gen/http/variations/client/cli.go b/server/gen/http/variations/client/cli.go index d4ccfc113..c12242aaf 100644 --- a/server/gen/http/variations/client/cli.go +++ b/server/gen/http/variations/client/cli.go @@ -23,7 +23,7 @@ func BuildUpsertGlobalPayload(variationsUpsertGlobalBody string, variationsUpser { err = json.Unmarshal([]byte(variationsUpsertGlobalBody), &body) if err != nil { - return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"confirm\": \"session\",\n \"confirm_prompt\": \"Aliquam voluptas necessitatibus dolorum magnam.\",\n \"description\": \"Sed optio.\",\n \"name\": \"Consequatur dolor non aperiam.\",\n \"src_tool_name\": \"Numquam eligendi atque ipsum ipsum.\",\n \"summarizer\": \"Rerum sunt culpa.\",\n \"summary\": \"Voluptas at consectetur neque voluptatem.\",\n \"tags\": [\n \"Enim et quo.\",\n \"Natus eum saepe dolore ut reprehenderit.\",\n \"Alias non quod.\"\n ]\n }'") + return nil, fmt.Errorf("invalid JSON for body, \nerror: %s, \nexample of valid JSON:\n%s", err, "'{\n \"confirm\": \"never\",\n \"confirm_prompt\": \"Non aperiam qui voluptas.\",\n \"description\": \"Quo laudantium natus.\",\n \"name\": \"Consectetur neque voluptatem dolores.\",\n \"src_tool_name\": \"Voluptas necessitatibus dolorum magnam optio.\",\n \"summarizer\": \"Sunt culpa aperiam veniam in sapiente.\",\n \"summary\": \"Optio magnam eos enim.\",\n \"tags\": [\n \"Dolore ut reprehenderit veniam alias.\",\n \"Quod quo.\"\n ]\n }'") } if body.Confirm != nil { if !(*body.Confirm == "always" || *body.Confirm == "never" || *body.Confirm == "session") { diff --git a/server/internal/about/globals.go b/server/internal/about/globals.go index f9e0c94e1..4e50a98c8 100644 --- a/server/internal/about/globals.go +++ b/server/internal/about/globals.go @@ -2,8 +2,15 @@ package about // See main.go for why this file exists. -var openapiDoc []byte +var ( + openapiDoc []byte + GitSHA string = "dev" +) func SetOpenAPIDoc(doc []byte) { openapiDoc = doc } + +func SetGitSHA(sha string) { + GitSHA = sha +} diff --git a/server/internal/about/impl.go b/server/internal/about/impl.go index 110a69c56..624d85b5b 100644 --- a/server/internal/about/impl.go +++ b/server/internal/about/impl.go @@ -4,14 +4,19 @@ import ( "bytes" "context" _ "embed" + "encoding/json" "io" "log/slog" + "net/http" + "strings" + "time" "go.opentelemetry.io/otel/trace" goahttp "goa.design/goa/v3/http" gen "github.com/speakeasy-api/gram/server/gen/about" srv "github.com/speakeasy-api/gram/server/gen/http/about/server" + "github.com/speakeasy-api/gram/server/internal/attr" "github.com/speakeasy-api/gram/server/internal/middleware" ) @@ -22,6 +27,14 @@ type Service struct { var _ gen.Service = (*Service)(nil) +type githubRelease struct { + TagName string `json:"tag_name"` +} + +const ( + githubReleasesURL = "https://api.github.com/repos/speakeasy-api/gram/releases" +) + func NewService(logger *slog.Logger, tracerProvider trace.TracerProvider) *Service { return &Service{ logger: logger, @@ -46,3 +59,71 @@ func (s *Service) Openapi(context.Context) (res *gen.OpenapiResult, body io.Read ContentLength: int64(len(openapiDoc)), }, io.NopCloser(bytes.NewReader(openapiDoc)), nil } + +// Version implements about.Service. +func (s *Service) Version(ctx context.Context) (res *gen.VersionResult, err error) { + ctx, span := s.tracer.Start(ctx, "Version") + defer span.End() + + serverVersion, dashboardVersion := s.getLatestVersions(ctx) + + return &gen.VersionResult{ + ServerVersion: serverVersion, + DashboardVersion: dashboardVersion, + GitSha: GitSHA, + }, nil +} + +func (s *Service) getLatestVersions(ctx context.Context) (serverVersion, dashboardVersion string) { + client := &http.Client{ + Timeout: 10 * time.Second, + } + + req, err := http.NewRequestWithContext(ctx, "GET", githubReleasesURL, nil) + if err != nil { + s.logger.WarnContext(ctx, "failed to create GitHub releases request", attr.SlogError(err)) + return "unknown", "unknown" + } + + resp, err := client.Do(req) + if err != nil { + s.logger.WarnContext(ctx, "failed to fetch GitHub releases", attr.SlogError(err)) + return "unknown", "unknown" + } + defer func() { + if closeErr := resp.Body.Close(); closeErr != nil { + s.logger.WarnContext(ctx, "failed to close response body", attr.SlogError(closeErr)) + } + }() + + if resp.StatusCode != http.StatusOK { + s.logger.WarnContext(ctx, "GitHub API returned non-200 status", attr.SlogHTTPResponseStatusCode(resp.StatusCode)) + return "unknown", "unknown" + } + + var releases []githubRelease + if err := json.NewDecoder(resp.Body).Decode(&releases); err != nil { + s.logger.WarnContext(ctx, "failed to decode GitHub releases response", attr.SlogError(err)) + return "unknown", "unknown" + } + + // Find latest server and dashboard versions + serverVersion = "unknown" + dashboardVersion = "unknown" + + for _, release := range releases { + if strings.HasPrefix(release.TagName, "@gram/server@") && serverVersion == "unknown" { + serverVersion = strings.TrimPrefix(release.TagName, "@gram/server@") + } + if strings.HasPrefix(release.TagName, "@gram/dashboard@") && dashboardVersion == "unknown" { + dashboardVersion = strings.TrimPrefix(release.TagName, "@gram/dashboard@") + } + + // Break early if we found both versions + if serverVersion != "unknown" && dashboardVersion != "unknown" { + break + } + } + + return serverVersion, dashboardVersion +}