From 067f328ea0f3cb3f48c0bb30e52d332ad033f885 Mon Sep 17 00:00:00 2001 From: Sagar Batchu Date: Tue, 2 Sep 2025 12:16:50 -0700 Subject: [PATCH 1/3] chore: add claude pr command --- server/cmd/gram/start.go | 1 + server/design/about/design.go | 17 + server/gen/about/client.go | 26 +- server/gen/about/endpoints.go | 11 + server/gen/about/service.go | 14 +- server/gen/http/about/client/client.go | 24 + server/gen/http/about/client/encode_decode.go | 214 ++ server/gen/http/about/client/paths.go | 5 + server/gen/http/about/client/types.go | 604 ++++ server/gen/http/about/server/encode_decode.go | 168 + server/gen/http/about/server/paths.go | 5 + server/gen/http/about/server/server.go | 51 + server/gen/http/about/server/types.go | 343 ++ server/gen/http/cli/gram/cli.go | 28 +- server/gen/http/openapi.yaml | 3059 ++++++++++------- server/internal/about/globals.go | 9 +- server/internal/about/impl.go | 81 + 17 files changed, 3507 insertions(+), 1153 deletions(-) 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/cli/gram/cli.go b/server/gen/http/cli/gram/cli.go index cdec9ac58..a4f3a8ef0 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)", @@ -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.`) diff --git a/server/gen/http/openapi.yaml b/server/gen/http/openapi.yaml index 3be877c92..f2a5cdaa0 100644 --- a/server/gen/http/openapi.yaml +++ b/server/gen/http/openapi.yaml @@ -6127,7 +6127,7 @@ definitions: example: Dicta nam enim nulla. kind: type: string - example: image + example: openapiv3 enum: - openapiv3 - image @@ -6188,7 +6188,7 @@ 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 @@ -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 @@ -6310,7 +6310,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -6360,7 +6360,7 @@ definitions: 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 @@ -6486,14 +6486,14 @@ 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: true + temporary: false timeout: true required: - name @@ -6529,7 +6529,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 @@ -6552,7 +6552,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. @@ -6572,7 +6572,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: false @@ -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? @@ -6654,7 +6654,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -6665,7 +6665,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -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 @@ -6744,14 +6744,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: false + temporary: true timeout: true required: - name @@ -6787,7 +6787,7 @@ 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 @@ -6869,7 +6869,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -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. @@ -6939,7 +6939,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. @@ -6959,14 +6959,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -7025,7 +7025,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. @@ -7048,11 +7048,11 @@ 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 + temporary: false timeout: false required: - name @@ -7131,7 +7131,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: fault: true @@ -7170,14 +7170,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 @@ -7197,7 +7197,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. @@ -7224,8 +7224,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 @@ -7263,7 +7263,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 @@ -7299,7 +7299,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -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. @@ -7346,7 +7346,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: fault: false @@ -7385,14 +7385,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -7439,7 +7439,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -7471,7 +7471,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -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. @@ -7541,7 +7541,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. @@ -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,7 +7600,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -7643,11 +7643,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: true @@ -7698,7 +7698,7 @@ definitions: 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,7 +7772,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -7885,7 +7885,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. @@ -7912,8 +7912,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 @@ -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. @@ -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. @@ -8100,7 +8100,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. @@ -8116,14 +8116,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -8229,7 +8229,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. @@ -8272,7 +8272,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. @@ -8331,14 +8331,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) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -8374,7 +8374,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -8421,7 +8421,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: false @@ -8464,7 +8464,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 @@ -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,7 +8550,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 @@ -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. @@ -8596,7 +8596,7 @@ 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 @@ -8679,15 +8679,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 @@ -8718,7 +8718,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -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. @@ -8808,7 +8808,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: false @@ -8890,11 +8890,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 @@ -8976,18 +8976,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: false + temporary: true timeout: false required: - name @@ -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. @@ -9031,7 +9031,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -9062,11 +9062,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: unauthorized access (default view) example: fault: false @@ -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. @@ -9109,7 +9109,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 @@ -9234,7 +9234,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -9297,7 +9297,7 @@ definitions: - temporary - timeout - fault - AuthInfoGatewayErrorResponseBody: + AuthInfoForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9331,7 +9331,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -9340,7 +9340,7 @@ definitions: - temporary - timeout - fault - AuthInfoInvalidResponseBody: + AuthInfoGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9364,6 +9364,49 @@ definitions: 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 + 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? @@ -9410,7 +9453,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 @@ -9433,7 +9476,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. @@ -9590,7 +9633,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. @@ -9617,8 +9660,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 @@ -9649,14 +9692,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: an unexpected error occurred (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -9719,7 +9762,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. @@ -9735,7 +9778,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -9778,14 +9821,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: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -9828,11 +9871,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: false + temporary: true timeout: true required: - name @@ -9868,10 +9911,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 @@ -9907,7 +9950,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -10040,7 +10083,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: false @@ -10122,11 +10165,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: true @@ -10172,12 +10215,12 @@ definitions: 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 + timeout: true required: - name - id @@ -10251,18 +10294,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: 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 @@ -10278,7 +10321,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. @@ -10321,7 +10364,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. @@ -10341,10 +10384,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 @@ -10364,7 +10407,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. @@ -10384,14 +10427,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: false + temporary: true timeout: true required: - name @@ -10493,7 +10536,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,7 +10595,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -10595,7 +10638,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -10665,7 +10708,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. @@ -10728,7 +10771,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 @@ -10751,7 +10794,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. @@ -10794,7 +10837,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. @@ -10865,7 +10908,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -10892,7 +10935,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. @@ -10935,7 +10978,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. @@ -11170,10 +11213,10 @@ 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 @@ -11213,7 +11256,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: false @@ -11252,7 +11295,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -11388,7 +11431,7 @@ 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 @@ -11431,7 +11474,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 @@ -11651,7 +11694,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -11690,12 +11733,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 + timeout: true required: - name - id @@ -11816,7 +11859,7 @@ 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 @@ -11839,7 +11882,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,14 +11898,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -11961,14 +12004,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: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -11988,7 +12031,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. @@ -12011,7 +12054,7 @@ 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 @@ -12058,7 +12101,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -12097,7 +12140,7 @@ 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 @@ -12117,7 +12160,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,7 +12180,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: false @@ -12375,7 +12418,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. @@ -12391,19 +12434,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: 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 @@ -12461,7 +12504,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,7 +12520,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -12527,7 +12570,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 @@ -12563,14 +12606,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: resource already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -12617,7 +12660,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -12633,7 +12676,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. @@ -12656,7 +12699,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 @@ -12719,7 +12762,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. @@ -12739,14 +12782,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: false + temporary: true timeout: true required: - name @@ -12778,7 +12821,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -12828,12 +12871,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: true - timeout: true + timeout: false required: - name - id @@ -12848,7 +12891,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. @@ -12911,7 +12954,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: false @@ -13582,19 +13625,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: - 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 @@ -13629,7 +13672,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: false @@ -13781,7 +13824,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. @@ -13797,11 +13840,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 @@ -13824,7 +13867,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. @@ -13986,11 +14029,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: unauthorized access (default view) example: fault: false @@ -14013,7 +14056,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. @@ -14040,8 +14083,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 @@ -14122,7 +14165,7 @@ 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 @@ -14162,7 +14205,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: false @@ -14201,7 +14244,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -14330,7 +14373,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -14539,10 +14582,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 @@ -14590,7 +14633,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -14605,7 +14648,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. @@ -14625,7 +14668,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: true @@ -15094,7 +15137,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -15137,19 +15180,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: false + temporary: false + timeout: true required: - name - id @@ -15223,14 +15266,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 @@ -15309,7 +15352,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -15336,7 +15379,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. @@ -15359,7 +15402,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 @@ -15395,14 +15438,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) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -15442,7 +15485,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: false @@ -15493,7 +15536,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -15528,7 +15571,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 @@ -15574,7 +15617,7 @@ 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 @@ -15617,12 +15660,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: true + timeout: false required: - name - id @@ -15657,10 +15700,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -15680,7 +15723,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. @@ -15696,11 +15739,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 @@ -15750,7 +15793,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -15766,7 +15809,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. @@ -15782,19 +15825,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: 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 @@ -15809,7 +15852,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. @@ -15825,11 +15868,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: false @@ -15911,7 +15954,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -15961,7 +16004,7 @@ 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 @@ -15981,7 +16024,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. @@ -16004,7 +16047,7 @@ definitions: 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 @@ -16040,7 +16083,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -16110,7 +16153,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. @@ -16305,7 +16348,7 @@ 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 @@ -16353,7 +16396,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -16439,7 +16482,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -16477,7 +16520,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 @@ -16517,7 +16560,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 @@ -16649,7 +16692,7 @@ 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 @@ -16712,7 +16755,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. @@ -16755,7 +16798,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. @@ -16771,14 +16814,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: unsupported media type (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -16814,7 +16857,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -16841,7 +16884,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. @@ -16927,7 +16970,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. @@ -16986,7 +17029,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -16997,7 +17040,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -17013,7 +17056,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. @@ -17174,10 +17217,10 @@ 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 @@ -17217,7 +17260,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: false @@ -17267,7 +17310,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -17283,7 +17326,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. @@ -17353,7 +17396,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -17369,7 +17412,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. @@ -17455,7 +17498,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. @@ -17471,7 +17514,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -17514,7 +17557,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -17612,14 +17655,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 @@ -17639,7 +17682,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. @@ -17741,14 +17784,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) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -17768,7 +17811,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. @@ -17831,15 +17874,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: true + temporary: true + timeout: false required: - name - id @@ -17920,12 +17963,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 @@ -17956,11 +17999,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: resource not found (default view) example: fault: false @@ -17999,7 +18042,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -18011,7 +18054,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -18097,7 +18140,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -18132,10 +18175,10 @@ 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 @@ -18175,7 +18218,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: true @@ -18183,7 +18226,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -18198,7 +18241,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. @@ -18221,7 +18264,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 @@ -18284,7 +18327,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. @@ -18397,8 +18440,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 @@ -18472,11 +18515,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 @@ -18519,7 +18562,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: true @@ -18687,7 +18730,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 +18753,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 @@ -18789,7 +18832,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -18801,7 +18844,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -18836,7 +18879,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 @@ -18879,7 +18922,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: false @@ -18918,7 +18961,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -18930,7 +18973,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -18965,10 +19008,10 @@ 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 @@ -19045,19 +19088,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: - 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 @@ -19088,14 +19131,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) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -19115,7 +19158,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. @@ -19185,8 +19228,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 @@ -19217,19 +19260,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: false + timeout: true required: - name - id @@ -19264,14 +19307,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: true required: - name @@ -19303,7 +19346,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -19346,14 +19389,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) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -19400,8 +19443,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 @@ -19436,7 +19479,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: fault: true @@ -19522,10 +19565,10 @@ 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 @@ -19561,7 +19604,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -19608,10 +19651,10 @@ 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 @@ -19651,15 +19694,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + 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 @@ -19697,7 +19740,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 @@ -19717,7 +19760,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. @@ -19733,11 +19776,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 @@ -19823,7 +19866,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 @@ -19873,7 +19916,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -19948,14 +19991,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) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -20097,7 +20140,7 @@ definitions: - temporary - timeout - fault - EnvironmentsUpdateEnvironmentForbiddenResponseBody: + EnvironmentsUpdateEnvironmentBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -20140,7 +20183,7 @@ definitions: - temporary - timeout - fault - EnvironmentsUpdateEnvironmentGatewayErrorResponseBody: + EnvironmentsUpdateEnvironmentConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -20160,49 +20203,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: 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? @@ -20211,7 +20211,7 @@ 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 @@ -20226,14 +20226,14 @@ definitions: - temporary - timeout - fault - EnvironmentsUpdateEnvironmentInvariantViolationResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -20253,14 +20253,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 + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -20269,7 +20269,7 @@ definitions: - temporary - timeout - fault - EnvironmentsUpdateEnvironmentNotFoundResponseBody: + EnvironmentsUpdateEnvironmentGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -20289,6 +20289,49 @@ 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: 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 + 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? @@ -20296,7 +20339,93 @@ definitions: 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: false description: resource not found (default view) example: fault: false @@ -20388,7 +20517,7 @@ 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 @@ -20408,7 +20537,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. @@ -20424,14 +20553,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -21079,6 +21208,11 @@ definitions: - 105 - 115 - 32 + - 100 + - 105 + - 103 + - 110 + - 105 - 115 - 105 - 116 @@ -22432,7 +22566,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -22444,7 +22578,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -22479,10 +22613,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 @@ -22518,14 +22652,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: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -22694,7 +22828,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: fault: true @@ -22740,7 +22874,7 @@ 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 @@ -22760,7 +22894,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. @@ -22776,7 +22910,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -22823,7 +22957,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: true @@ -23034,7 +23168,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,7 +23184,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -23199,7 +23333,7 @@ definitions: - temporary - timeout - fault - IntegrationsGetInvalidResponseBody: + IntegrationsGetConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -23227,7 +23361,50 @@ 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: 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: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 @@ -23249,7 +23426,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. @@ -23355,7 +23532,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: fault: true @@ -23363,7 +23540,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -23421,7 +23598,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. @@ -23484,7 +23661,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false @@ -23507,7 +23684,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. @@ -23527,7 +23704,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: false @@ -23566,7 +23743,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -23609,7 +23786,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -23636,7 +23813,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,14 +23829,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 @@ -23699,7 +23876,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 @@ -23738,14 +23915,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: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -23781,7 +23958,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -23878,7 +24055,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -23985,14 +24162,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 @@ -24012,7 +24189,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. @@ -24071,19 +24248,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: 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 @@ -24141,7 +24318,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. @@ -24168,8 +24345,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 @@ -24184,7 +24361,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. @@ -24211,7 +24388,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -24227,7 +24404,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. @@ -24296,7 +24473,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. @@ -24312,7 +24489,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -24339,7 +24516,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,10 +24536,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 @@ -24402,7 +24579,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: true @@ -24425,7 +24602,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. @@ -24445,10 +24622,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 @@ -24496,7 +24673,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -24531,7 +24708,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: fault: true @@ -24574,7 +24751,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 @@ -24617,14 +24794,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: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -24683,7 +24860,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. @@ -24726,7 +24903,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. @@ -24749,7 +24926,7 @@ 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 @@ -24835,7 +25012,7 @@ 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 @@ -24871,19 +25048,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -24898,7 +25075,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. @@ -24918,7 +25095,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: true @@ -24964,12 +25141,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 @@ -25004,7 +25181,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 @@ -25047,7 +25224,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: false @@ -25055,7 +25232,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -25093,7 +25270,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 @@ -25129,14 +25306,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 not found (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -25184,7 +25361,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -25199,7 +25376,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. @@ -25215,7 +25392,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -28223,7 +28400,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -28239,7 +28416,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. @@ -28255,7 +28432,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -28348,11 +28525,11 @@ 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 - temporary: false + temporary: true timeout: true required: - name @@ -29440,7 +29617,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 +29676,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -29526,7 +29703,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. @@ -29569,7 +29746,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. @@ -29596,7 +29773,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -29675,7 +29852,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 @@ -29698,7 +29875,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. @@ -29721,7 +29898,7 @@ 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 @@ -29818,7 +29995,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -29845,7 +30022,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. @@ -29908,7 +30085,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: false @@ -29931,7 +30108,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. @@ -29959,7 +30136,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -29974,7 +30151,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. @@ -30033,11 +30210,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: false @@ -30083,7 +30260,7 @@ 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 @@ -30126,7 +30303,7 @@ 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 @@ -30146,7 +30323,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. @@ -30169,7 +30346,7 @@ 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 @@ -30252,14 +30429,14 @@ 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: true + temporary: false timeout: true required: - name @@ -30291,7 +30468,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -30346,7 +30523,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -30420,7 +30597,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -30447,7 +30624,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. @@ -30470,7 +30647,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 @@ -30506,7 +30683,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -30549,7 +30726,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -30576,7 +30753,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. @@ -30592,11 +30769,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 @@ -30619,7 +30796,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. @@ -30662,7 +30839,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. @@ -30748,7 +30925,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. @@ -30764,7 +30941,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -30791,7 +30968,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. @@ -30811,7 +30988,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: request is invalid (default view) example: fault: true @@ -30862,7 +31039,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -30897,7 +31074,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: fault: true @@ -30920,7 +31097,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. @@ -30947,7 +31124,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -30963,7 +31140,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. @@ -30983,7 +31160,7 @@ 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 @@ -31006,7 +31183,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. @@ -31022,7 +31199,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -31085,6 +31262,49 @@ definitions: - 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: 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 PackagesPublishRequestBody: title: PackagesPublishRequestBody type: object @@ -31104,7 +31324,7 @@ definitions: visibility: type: string description: The visibility of the package version - example: public + example: private enum: - public - private @@ -31145,7 +31365,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: true @@ -31188,10 +31408,10 @@ 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 @@ -31227,7 +31447,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -31317,7 +31537,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource already exists (default view) example: fault: true @@ -31363,7 +31583,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 @@ -31403,7 +31623,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 @@ -31512,7 +31732,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 +31752,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: fault: false @@ -31624,7 +31844,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. @@ -31640,11 +31860,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 @@ -31710,7 +31930,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. @@ -31899,7 +32119,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -32059,11 +32279,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 @@ -32145,14 +32365,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: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -32191,7 +32411,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. @@ -32211,10 +32431,10 @@ definitions: 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 @@ -32257,7 +32477,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 @@ -32300,11 +32520,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 @@ -32336,19 +32556,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 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 @@ -32386,7 +32606,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 @@ -32406,7 +32626,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. @@ -32429,7 +32649,7 @@ definitions: example: false description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -32492,7 +32712,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. @@ -32555,7 +32775,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 @@ -32606,7 +32826,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -32641,7 +32861,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unauthorized access (default view) example: fault: true @@ -32664,7 +32884,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. @@ -32723,7 +32943,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -32734,7 +32954,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -32773,7 +32993,7 @@ 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 @@ -32809,7 +33029,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -32821,7 +33041,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -32852,14 +33072,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: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -32945,7 +33165,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 @@ -32985,10 +33205,10 @@ 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 @@ -33031,7 +33251,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 @@ -33079,11 +33299,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: unauthorized access (default view) example: fault: true @@ -33106,7 +33326,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. @@ -33126,7 +33346,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 @@ -33661,7 +33881,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -33673,7 +33893,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -33817,7 +34037,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. @@ -33833,14 +34053,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 @@ -33969,7 +34189,7 @@ 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 @@ -33989,7 +34209,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. @@ -34009,7 +34229,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 @@ -34055,7 +34275,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 @@ -34075,7 +34295,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. @@ -34098,7 +34318,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 @@ -34118,7 +34338,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. @@ -34134,7 +34354,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34184,7 +34404,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 @@ -34220,7 +34440,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34247,7 +34467,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. @@ -34263,7 +34483,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34306,7 +34526,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -34333,7 +34553,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. @@ -34356,7 +34576,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 @@ -34392,7 +34612,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34505,7 +34725,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. @@ -34564,18 +34784,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -34619,7 +34839,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -34677,7 +34897,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. @@ -34705,7 +34925,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -34736,11 +34956,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 @@ -34763,7 +34983,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. @@ -34786,7 +35006,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 @@ -34849,7 +35069,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. @@ -34865,7 +35085,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34994,11 +35214,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 @@ -35037,11 +35257,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: permission denied (default view) example: fault: true @@ -35087,11 +35307,11 @@ 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 + temporary: true timeout: false required: - name @@ -35130,7 +35350,7 @@ 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 @@ -35150,7 +35370,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. @@ -35213,7 +35433,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: fault: false @@ -35236,7 +35456,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. @@ -35279,7 +35499,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. @@ -35295,14 +35515,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: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -35345,12 +35565,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: true - timeout: false + timeout: true required: - name - id @@ -35388,7 +35608,7 @@ definitions: 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 @@ -35424,7 +35644,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -35467,14 +35687,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: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -35510,18 +35730,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: false required: - name @@ -35537,7 +35757,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. @@ -35639,11 +35859,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: resource not found (default view) example: fault: false @@ -35701,7 +35921,7 @@ 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 @@ -35721,7 +35941,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. @@ -35741,10 +35961,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 @@ -35780,14 +36000,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: unsupported media type (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -35823,14 +36043,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 is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -35850,7 +36070,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. @@ -35893,7 +36113,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. @@ -35916,7 +36136,7 @@ definitions: example: false description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -35959,7 +36179,7 @@ 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 @@ -35979,7 +36199,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. @@ -36002,7 +36222,7 @@ 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 @@ -36065,7 +36285,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. @@ -36237,7 +36457,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 @@ -36300,7 +36520,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. @@ -36363,15 +36583,15 @@ definitions: 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 - timeout: false + temporary: true + timeout: true required: - name - id @@ -36493,7 +36713,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: request contains one or more invalidation fields (default view) + description: an unexpected error occurred (default view) example: fault: false id: 123abc @@ -36538,7 +36758,7 @@ 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 @@ -36558,7 +36778,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. @@ -36574,11 +36794,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 not found (default view) example: fault: true @@ -36629,7 +36849,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -36660,14 +36880,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) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -36707,7 +36927,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: true @@ -36730,7 +36950,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. @@ -36796,11 +37016,11 @@ 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 - temporary: false + temporary: true timeout: true required: - name @@ -36836,10 +37056,10 @@ 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 @@ -36925,7 +37145,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 @@ -36945,7 +37165,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. @@ -37011,7 +37231,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 @@ -37054,7 +37274,7 @@ 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 @@ -37153,6 +37373,49 @@ definitions: - 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: 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 TemplatesListTemplatesBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -37160,7 +37423,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. @@ -37226,7 +37489,7 @@ definitions: 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 @@ -37246,7 +37509,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. @@ -37262,7 +37525,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -37305,7 +37568,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -37348,7 +37611,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -37391,7 +37654,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -37438,7 +37701,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: fault: true @@ -37484,7 +37747,7 @@ 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 @@ -37498,6 +37761,49 @@ definitions: - 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: true + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 + TemplatesListTemplatesUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37517,6 +37823,49 @@ 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: 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 + 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? @@ -37525,13 +37874,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 + temporary: false timeout: false required: - name @@ -37540,7 +37889,7 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesUnsupportedMediaResponseBody: + TemplatesRenderTemplateByIDBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37568,9 +37917,9 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unsupported media type (default view) + description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -37583,7 +37932,93 @@ definitions: - temporary - timeout - fault - TemplatesRenderTemplateBadRequestResponseBody: + 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: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + 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: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 + TemplatesRenderTemplateByIDGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37603,178 +38038,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: 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? @@ -37790,7 +38053,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -37868,7 +38131,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 @@ -37891,7 +38154,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. @@ -37914,7 +38177,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 @@ -38009,14 +38272,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) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -38099,15 +38362,15 @@ 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: false - timeout: true + timeout: false required: - name - id @@ -38185,10 +38448,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 @@ -38401,7 +38664,7 @@ 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 @@ -38464,7 +38727,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. @@ -38487,7 +38750,7 @@ definitions: 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 @@ -38527,7 +38790,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: true @@ -38535,7 +38798,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -38550,7 +38813,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. @@ -38593,7 +38856,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. @@ -38621,7 +38884,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -38702,7 +38965,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 @@ -38931,6 +39194,150 @@ 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: 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: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 + 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: Deserunt qui. + engine: + type: string + description: The template engine + example: mustache + enum: + - mustache + id: + type: string + description: The ID of the prompt template to update + example: Eius molestiae. + 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 + example: Autem quo voluptatem est at omnis. + tools_hint: + type: array + items: + type: string + example: Facere harum molestiae porro quasi quod. + description: The suggested tool names associated with the prompt template + example: + - Unde corporis. + - Eligendi quasi fugit aut. + - Deleniti animi ullam ipsam ut. + maxItems: 20 + example: + arguments: '{"name":"example","email":"mail@example.com"}' + description: Rerum nihil qui et vero dolores ducimus. + engine: mustache + id: Deleniti in sunt deserunt numquam rerum. + kind: prompt + prompt: Labore debitis est. + tools_hint: + - Ut aspernatur quo temporibus quia et. + - Dolor repellat praesentium eos et quae. + - Sit deserunt in et qui cum. + 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: false + timeout: + type: boolean + description: Is the error a timeout? + example: true + description: unauthorized access (default view) example: fault: true id: 123abc @@ -38945,6 +39352,49 @@ definitions: - 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: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 TemplatesUpdateTemplateUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -39338,19 +39788,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 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 @@ -39365,7 +39815,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. @@ -39431,7 +39881,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 @@ -39474,7 +39924,7 @@ 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 @@ -39494,7 +39944,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. @@ -39510,7 +39960,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -39553,7 +40003,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -39623,7 +40073,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. @@ -39709,7 +40159,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. @@ -39732,12 +40182,12 @@ 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 - timeout: true + timeout: false required: - name - id @@ -41273,7 +41723,7 @@ definitions: mcp_is_public: type: boolean description: Whether the toolset is public in MCP - example: true + example: false mcp_slug: type: string description: The slug of the MCP to use for the toolset @@ -41346,6 +41796,11 @@ definitions: - 105 - 115 - 32 + - 100 + - 105 + - 103 + - 110 + - 105 - 115 - 105 - 116 @@ -41640,6 +42095,11 @@ definitions: - 105 - 115 - 32 + - 100 + - 105 + - 103 + - 110 + - 105 - 115 - 105 - 116 @@ -41845,8 +42305,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 @@ -41904,7 +42364,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. @@ -42017,7 +42477,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -42151,7 +42611,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: false @@ -42217,7 +42677,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. @@ -42237,7 +42697,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: false @@ -42296,7 +42756,7 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityConflictResponseBody: + ToolsetsCheckMCPSlugAvailabilityBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -42330,7 +42790,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -42369,7 +42829,7 @@ definitions: example: false description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -42405,19 +42865,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: false - timeout: false + timeout: true required: - name - id @@ -42502,7 +42962,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -42518,7 +42978,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. @@ -42561,7 +43021,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. @@ -42581,7 +43041,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: false @@ -42647,7 +43107,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. @@ -42717,8 +43177,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 @@ -43143,7 +43603,7 @@ 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 @@ -43179,7 +43639,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -43222,19 +43682,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: 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 @@ -43265,7 +43725,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -43482,7 +43942,7 @@ 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 @@ -43529,8 +43989,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 @@ -43545,7 +44005,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. @@ -43565,7 +44025,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: false @@ -43615,8 +44075,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 @@ -43733,7 +44193,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -43744,7 +44204,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -43783,7 +44243,7 @@ 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 @@ -43954,6 +44414,135 @@ definitions: 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 + 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: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 + 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 + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 + 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: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 @@ -43998,7 +44587,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 @@ -44038,10 +44627,10 @@ 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 @@ -44206,7 +44795,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -44256,7 +44845,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 @@ -44299,7 +44888,7 @@ 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 @@ -44471,7 +45060,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 @@ -44507,7 +45096,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -44570,7 +45159,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsGatewayErrorResponseBody: + ToolsetsListToolsetsForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44598,52 +45187,9 @@ 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: 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) + description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -44656,7 +45202,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsInvariantViolationResponseBody: + ToolsetsListToolsetsGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44685,6 +45231,49 @@ 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: 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: true + description: request contains one or more invalidation fields (default view) example: fault: false id: 123abc @@ -44699,6 +45288,49 @@ definitions: - 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: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 ToolsetsListToolsetsNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -44749,7 +45381,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. @@ -44792,7 +45424,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. @@ -44815,7 +45447,7 @@ 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 @@ -44835,7 +45467,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. @@ -44862,7 +45494,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -44898,7 +45530,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false @@ -44937,19 +45569,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 already exists (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 @@ -45027,7 +45659,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 @@ -45073,7 +45705,7 @@ definitions: 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 @@ -45156,10 +45788,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + 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 @@ -45195,11 +45827,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: unauthorized access (default view) example: fault: true @@ -45222,7 +45854,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. @@ -45351,7 +45983,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. @@ -45371,7 +46003,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: true @@ -45394,7 +46026,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. @@ -45422,7 +46054,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -45437,7 +46069,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. @@ -45460,7 +46092,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 @@ -45500,15 +46132,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: false - timeout: false + timeout: true required: - name - id @@ -45543,7 +46175,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 @@ -45566,7 +46198,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. @@ -45582,11 +46214,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 not found (default view) example: fault: false @@ -45623,11 +46255,11 @@ definitions: 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 - example: false + example: true mcp_slug: type: string description: The slug of the MCP to use for the toolset @@ -45737,7 +46369,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -45780,7 +46412,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -45792,7 +46424,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -46010,7 +46642,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. @@ -46030,7 +46662,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: true @@ -46089,7 +46721,7 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutGatewayErrorResponseBody: + UsageCreateCheckoutForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46116,7 +46748,50 @@ definitions: 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 + 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: false description: an unexpected error occurred (default view) example: fault: false @@ -46252,8 +46927,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 @@ -46284,7 +46959,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -46311,7 +46986,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. @@ -46331,7 +47006,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 @@ -46370,14 +47045,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -46397,7 +47072,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. @@ -46424,8 +47099,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 @@ -46456,12 +47131,55 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + 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 + 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: 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 id: 123abc @@ -46476,14 +47194,14 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionForbiddenResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46504,7 +47222,7 @@ 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 @@ -46519,7 +47237,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionGatewayErrorResponseBody: + UsageCreateCustomerSessionInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46547,9 +47265,9 @@ definitions: type: boolean description: Is the error a timeout? example: false - 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 @@ -46562,7 +47280,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionInvalidResponseBody: + UsageCreateCustomerSessionInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46589,15 +47307,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: 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 @@ -46605,7 +47323,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionInvariantViolationResponseBody: + UsageCreateCustomerSessionNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46628,19 +47346,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 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 @@ -46648,7 +47366,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionNotFoundResponseBody: + UsageCreateCustomerSessionUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46671,18 +47389,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) + 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: true required: - name @@ -46691,14 +47409,14 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionUnauthorizedResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46718,15 +47436,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: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -46734,14 +47452,14 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionUnexpectedResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46761,15 +47479,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + 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 + timeout: true required: - name - id @@ -46777,14 +47495,14 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionUnsupportedMediaResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46804,15 +47522,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unsupported media type (default view) + 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 @@ -46820,7 +47538,7 @@ definitions: - temporary - timeout - fault - UsageGetPeriodUsageBadRequestResponseBody: + UsageGetPeriodUsageConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46848,7 +47566,7 @@ 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 @@ -46863,14 +47581,14 @@ definitions: - temporary - timeout - fault - UsageGetPeriodUsageConflictResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46886,18 +47604,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: resource already exists (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 @@ -46906,14 +47624,14 @@ definitions: - temporary - timeout - fault - UsageGetPeriodUsageForbiddenResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47015,7 +47733,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -47105,7 +47823,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: fault: false @@ -47128,7 +47846,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. @@ -47144,7 +47862,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -47187,7 +47905,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -47257,7 +47975,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. @@ -47273,14 +47991,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) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -47300,7 +48018,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. @@ -47327,7 +48045,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -47406,10 +48124,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 @@ -47472,7 +48190,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. @@ -47488,7 +48206,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -47535,7 +48253,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: fault: true @@ -47617,7 +48335,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -47664,7 +48382,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unsupported media type (default view) example: fault: false @@ -47771,7 +48489,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. @@ -47814,7 +48532,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. @@ -47837,12 +48555,12 @@ definitions: 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 + timeout: false required: - name - id @@ -47884,7 +48602,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -48045,7 +48763,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -48131,14 +48849,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -48217,19 +48935,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: 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 +48962,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. @@ -48260,18 +48978,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: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -48307,7 +49025,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: false @@ -48315,7 +49033,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -48330,7 +49048,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 +49064,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -48357,8 +49075,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 @@ -48373,7 +49091,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,14 +49107,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -48432,11 +49150,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 @@ -48459,7 +49177,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. @@ -48588,7 +49306,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. @@ -48717,7 +49435,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. @@ -48733,14 +49451,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: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -48780,10 +49498,10 @@ 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 @@ -48823,7 +49541,7 @@ 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 @@ -48869,12 +49587,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 @@ -49112,6 +49830,49 @@ definitions: - 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: false + id: + type: string + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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 securityDefinitions: apikey_header_Gram-Key: type: apiKey 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 +} From 4dda4279b111e786457025819b9c67fa297f2214 Mon Sep 17 00:00:00 2001 From: Sagar Batchu Date: Tue, 2 Sep 2025 13:07:03 -0700 Subject: [PATCH 2/3] chore: add conventional commit prefix validation to pr command --- .claude/commands/pr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 5095b186c77485549959f97a7422e2636eda8ff3 Mon Sep 17 00:00:00 2001 From: Sagar Batchu Date: Mon, 6 Oct 2025 15:07:44 -0700 Subject: [PATCH 3/3] chore: regenerate goa code after rebase --- server/gen/http/auth/client/cli.go | 2 +- server/gen/http/cli/gram/cli.go | 503 +- server/gen/http/deployments/client/cli.go | 6 +- server/gen/http/domains/client/cli.go | 2 +- server/gen/http/environments/client/cli.go | 4 +- server/gen/http/integrations/client/cli.go | 2 +- server/gen/http/keys/client/cli.go | 2 +- server/gen/http/mcp_metadata/client/cli.go | 2 +- server/gen/http/openapi.json | 2 +- server/gen/http/openapi.yaml | 22755 +++++++++---------- server/gen/http/packages/client/cli.go | 6 +- server/gen/http/projects/client/cli.go | 4 +- server/gen/http/slack/client/cli.go | 2 +- server/gen/http/templates/client/cli.go | 8 +- server/gen/http/toolsets/client/cli.go | 6 +- server/gen/http/variations/client/cli.go | 2 +- 16 files changed, 11425 insertions(+), 11883 deletions(-) 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 a4f3a8ef0..6fc262abd 100644 --- a/server/gen/http/cli/gram/cli.go +++ b/server/gen/http/cli/gram/cli.go @@ -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" + "" } @@ -1424,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() { @@ -1453,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() { @@ -1482,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() { @@ -1511,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() { @@ -1536,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() { @@ -1559,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. @@ -1593,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() { @@ -1633,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() { @@ -1652,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() { @@ -1674,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() { @@ -1694,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. @@ -1727,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() { @@ -1750,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() { @@ -1771,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 @@ -1814,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() { @@ -1837,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() { @@ -1860,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() { @@ -1889,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", @@ -1915,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": "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." + }, + { + "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() { @@ -1965,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() { @@ -2045,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() { @@ -2071,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() { @@ -2098,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. @@ -2131,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() { @@ -2155,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() { @@ -2177,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 @@ -2215,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() { @@ -2257,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() { @@ -2283,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() { @@ -2323,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 @@ -2361,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 @@ -2398,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() { @@ -2422,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. @@ -2459,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() { @@ -2484,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() { @@ -2505,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 @@ -2540,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() { @@ -2564,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. @@ -2607,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() { @@ -2644,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() { @@ -2678,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() { @@ -2703,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() { @@ -2729,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. @@ -2769,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() { @@ -2794,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() { @@ -2820,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. @@ -2856,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() { @@ -2879,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() { @@ -2900,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() { @@ -2924,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() { @@ -2946,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 @@ -2990,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() { @@ -3027,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() { @@ -3064,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() { @@ -3087,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() { @@ -3114,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() { @@ -3143,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() { @@ -3172,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. @@ -3216,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. @@ -3258,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() { @@ -3288,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() { @@ -3314,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() { @@ -3354,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() { @@ -3377,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() { @@ -3400,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() { @@ -3423,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() { @@ -3450,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() { @@ -3476,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. @@ -3510,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() { @@ -3548,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() { @@ -3569,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 @@ -3608,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() { @@ -3645,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() { @@ -3668,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 f2a5cdaa0..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,21 +6110,21 @@ 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: openapiv3 @@ -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: true + 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. @@ -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 @@ -6314,14 +6314,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: true required: - name @@ -6360,12 +6360,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: 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. @@ -6486,15 +6486,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: false - timeout: true + timeout: false required: - name - id @@ -6529,14 +6529,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -6552,7 +6552,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. @@ -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: 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 @@ -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 @@ -6661,12 +6661,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 @@ -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. @@ -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. @@ -6751,7 +6751,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -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. @@ -6790,12 +6790,12 @@ 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 - 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. @@ -6869,11 +6869,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 not found (default view) example: fault: true @@ -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 @@ -6939,7 +6939,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. @@ -6955,7 +6955,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -6966,8 +6966,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 @@ -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 @@ -7025,7 +7025,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. @@ -7041,7 +7041,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -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 @@ -7134,12 +7134,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: 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. @@ -7174,14 +7174,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 @@ -7197,7 +7197,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. @@ -7220,12 +7220,12 @@ 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: false - timeout: false + timeout: true required: - name - id @@ -7256,19 +7256,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: 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. @@ -7299,14 +7299,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: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -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: 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: false required: - name @@ -7392,12 +7392,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: 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,11 +7428,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: unsupported media type (default view) example: fault: true @@ -7471,19 +7471,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 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 @@ -7525,93 +7525,7 @@ definitions: 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: true - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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 @@ -7620,7 +7534,50 @@ definitions: - temporary - timeout - fault - AssetsUploadFunctionsInvalidResponseBody: + 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: @@ -7648,14 +7605,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: request contains one or more invalidation fields (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: true + timeout: false required: - name - id @@ -7663,7 +7620,7 @@ definitions: - temporary - timeout - fault - AssetsUploadFunctionsInvariantViolationResponseBody: + AssetsUploadFunctionsInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -7691,12 +7648,55 @@ definitions: type: boolean description: Is the error a timeout? example: false - 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 + 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: @@ -7779,11 +7779,11 @@ 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: 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 @@ -7885,7 +7885,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. @@ -7912,7 +7912,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -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 @@ -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 @@ -8100,7 +8100,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. @@ -8116,11 +8116,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 @@ -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 @@ -8229,7 +8229,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. @@ -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 @@ -8272,7 +8272,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. @@ -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 @@ -8331,18 +8331,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 + 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. @@ -8374,7 +8374,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -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 @@ -8421,7 +8421,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: permission denied (default view) example: fault: false @@ -8460,11 +8460,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 @@ -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 @@ -8553,11 +8553,11 @@ 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: false + temporary: true timeout: false required: - name @@ -8589,7 +8589,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -8600,8 +8600,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 @@ -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,7 +8639,50 @@ 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: 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 @@ -8652,7 +8695,7 @@ definitions: - temporary - timeout - fault - AssetsUploadOpenAPIv3UnexpectedResponseBody: + AssetsUploadOpenAPIv3UnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -8675,54 +8718,11 @@ 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: true - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - 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: true 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 @@ -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: 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: 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 @@ -8890,18 +8890,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: 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. @@ -8976,11 +8976,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 @@ -8988,7 +8988,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -9026,12 +9026,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: true + temporary: true + timeout: false required: - name - id @@ -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. @@ -9062,19 +9062,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: - 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 @@ -9109,14 +9109,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 @@ -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. @@ -9241,12 +9241,12 @@ 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: 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 @@ -9297,14 +9297,14 @@ definitions: - temporary - timeout - fault - AuthInfoForbiddenResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -9340,49 +9340,6 @@ definitions: - 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: false - id: 123abc - message: parameter 'p' must be an integer - name: bad_request - temporary: false - timeout: true - required: - - name - - id - - message - - temporary - - timeout - - fault AuthInfoInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -9413,11 +9370,11 @@ 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 + temporary: true timeout: false required: - name @@ -9449,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: 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 @@ -9518,10 +9475,10 @@ definitions: properties: active_organization_id: type: string - example: Eos aut ut molestiae itaque. + example: Non veritatis velit labore velit aut. gram_account_type: type: string - example: Quo maxime assumenda labore. + example: Et consectetur. is_admin: type: boolean example: false @@ -9530,95 +9487,164 @@ definitions: items: $ref: '#/definitions/OrganizationEntry' example: - - id: Iusto alias et ea quisquam nostrum itaque. - name: Eius est ut odit magni. + - 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: 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. + - 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: - - 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. + - 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: 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. + - 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: - - Voluptatem quae totam quisquam laborum qui. - - Sunt quia. - - Et eos minima ut assumenda similique. - - Sunt voluptatem veniam blanditiis. + - 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: Quam accusamus provident dolorem reiciendis ea. + example: Maxime assumenda labore quas rem quibusdam. user_email: type: string - example: Dolores in error sunt ducimus. + example: Facere quaerat aut doloribus necessitatibus nihil. user_id: type: string - example: Provident dolorem. + example: Quam accusamus provident dolorem reiciendis ea. user_photo_url: type: string - example: Facere quaerat aut doloribus necessitatibus nihil. + example: Nesciunt blanditiis distinctio. user_signature: type: string - example: Eos est dolor id quidem non qui. + example: Sit eos aut ut molestiae itaque quia. example: - active_organization_id: Odio quia consequatur vitae. - gram_account_type: Repellat nulla voluptates eos. - is_admin: false + active_organization_id: Facilis non. + gram_account_type: Optio architecto. + is_admin: true organizations: - - id: Iusto alias et ea quisquam nostrum itaque. - name: Eius est ut odit magni. + - 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: 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. + - 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: - - 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. + - 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: 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. + - 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: - - 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. + - 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 @@ -9649,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: 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 @@ -9703,8 +9729,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 @@ -9713,49 +9739,6 @@ definitions: - 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: @@ -9783,7 +9766,7 @@ definitions: 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 id: 123abc @@ -9798,7 +9781,7 @@ definitions: - temporary - timeout - fault - AuthLoginConflictResponseBody: + AuthLoginBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9826,13 +9809,13 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: resource already exists (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 + temporary: false timeout: false required: - name @@ -9841,7 +9824,7 @@ definitions: - temporary - timeout - fault - AuthLoginForbiddenResponseBody: + 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: false - description: permission denied (default view) + 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 @@ -9884,7 +9867,7 @@ definitions: - temporary - timeout - fault - AuthLoginGatewayErrorResponseBody: + AuthLoginForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9911,8 +9894,8 @@ 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: true id: 123abc @@ -9927,50 +9910,7 @@ definitions: - 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: 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 - AuthLoginInvariantViolationResponseBody: + AuthLoginGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -9993,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 @@ -10013,7 +9953,7 @@ definitions: - temporary - timeout - fault - AuthLoginNotFoundResponseBody: + AuthLoginInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10036,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 @@ -10056,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. @@ -10079,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: true - 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 @@ -10099,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. @@ -10126,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 @@ -10142,7 +10082,7 @@ definitions: - temporary - timeout - fault - AuthLoginUnsupportedMediaResponseBody: + AuthLoginUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10170,13 +10110,13 @@ 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 + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -10185,7 +10125,7 @@ definitions: - temporary - timeout - fault - AuthLogoutBadRequestResponseBody: + AuthLoginUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10213,57 +10153,14 @@ definitions: 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 - 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) + 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 @@ -10271,7 +10168,7 @@ definitions: - temporary - timeout - fault - AuthLogoutForbiddenResponseBody: + AuthLoginUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10294,62 +10191,19 @@ definitions: 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 - 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: 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 - timeout: false + timeout: true required: - name - id @@ -10357,14 +10211,14 @@ definitions: - temporary - timeout - fault - AuthLogoutInvalidResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10380,18 +10234,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 contains one or more invalidation fields (default view) + 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 + temporary: true timeout: true required: - name @@ -10400,7 +10254,7 @@ definitions: - temporary - timeout - fault - AuthLogoutInvariantViolationResponseBody: + AuthLogoutConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10427,14 +10281,14 @@ definitions: 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: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -10443,14 +10297,14 @@ definitions: - temporary - timeout - fault - AuthLogoutNotFoundResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10471,13 +10325,13 @@ definitions: 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 + temporary: false timeout: true required: - name @@ -10486,7 +10340,7 @@ definitions: - temporary - timeout - fault - AuthLogoutUnauthorizedResponseBody: + AuthLogoutGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10509,19 +10363,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: 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 + timeout: true required: - name - id @@ -10529,14 +10383,14 @@ definitions: - temporary - timeout - fault - AuthLogoutUnexpectedResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10552,19 +10406,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: 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 @@ -10572,7 +10426,7 @@ definitions: - temporary - timeout - fault - AuthLogoutUnsupportedMediaResponseBody: + AuthLogoutInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10595,18 +10449,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: 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 @@ -10615,7 +10469,7 @@ definitions: - temporary - timeout - fault - AuthRegisterBadRequestResponseBody: + AuthLogoutNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10643,50 +10497,7 @@ definitions: 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) + description: resource not found (default view) example: fault: false id: 123abc @@ -10701,7 +10512,7 @@ definitions: - temporary - timeout - fault - AuthRegisterForbiddenResponseBody: + AuthLogoutUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10724,12 +10535,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) + example: true + description: unauthorized access (default view) example: fault: true id: 123abc @@ -10744,14 +10555,14 @@ definitions: - temporary - timeout - fault - AuthRegisterGatewayErrorResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10767,19 +10578,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 + temporary: false + timeout: false required: - name - id @@ -10787,14 +10598,14 @@ definitions: - temporary - timeout - fault - AuthRegisterInvalidResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10814,8 +10625,8 @@ 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 id: 123abc @@ -10830,7 +10641,7 @@ definitions: - temporary - timeout - fault - AuthRegisterInvariantViolationResponseBody: + AuthRegisterBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10857,15 +10668,15 @@ 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 message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -10873,14 +10684,14 @@ definitions: - temporary - timeout - fault - AuthRegisterNotFoundResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10896,19 +10707,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: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -10916,19 +10727,7 @@ definitions: - 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: + AuthRegisterForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -10955,14 +10754,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (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: true required: - name @@ -10971,14 +10770,14 @@ definitions: - temporary - timeout - fault - AuthRegisterUnexpectedResponseBody: + 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: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -10994,19 +10793,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -11014,7 +10813,7 @@ definitions: - temporary - timeout - fault - AuthRegisterUnsupportedMediaResponseBody: + AuthRegisterInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11041,14 +10840,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unsupported media type (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: false + temporary: true timeout: false required: - name @@ -11057,7 +10856,7 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesBadRequestResponseBody: + AuthRegisterInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11080,19 +10879,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: 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 + timeout: true required: - name - id @@ -11100,7 +10899,7 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesConflictResponseBody: + AuthRegisterNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11128,13 +10927,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource already exists (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: false required: - name @@ -11143,7 +10942,19 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesForbiddenResponseBody: + 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: @@ -11171,9 +10982,9 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: unauthorized access (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -11186,7 +10997,7 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesGatewayErrorResponseBody: + AuthRegisterUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11216,11 +11027,11 @@ 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 + temporary: true timeout: false required: - name @@ -11229,14 +11040,14 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesInvalidResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11257,7 +11068,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: request contains one or more invalidation fields (default view) + description: unsupported media type (default view) example: fault: false id: 123abc @@ -11272,7 +11083,7 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesInvariantViolationResponseBody: + AuthSwitchScopesBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11295,19 +11106,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) + 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 + temporary: true + timeout: false required: - name - id @@ -11315,14 +11126,14 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesNotFoundResponseBody: + 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: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11343,14 +11154,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - 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: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -11358,7 +11169,7 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesUnauthorizedResponseBody: + AuthSwitchScopesForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11381,55 +11192,12 @@ 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: 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: true + description: permission denied (default view) example: fault: false id: 123abc @@ -11444,7 +11212,7 @@ definitions: - temporary - timeout - fault - AuthSwitchScopesUnsupportedMediaResponseBody: + AuthSwitchScopesGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11467,18 +11235,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: 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 @@ -11487,187 +11255,14 @@ definitions: - 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: + 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: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11687,8 +11282,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (default view) + example: true + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc @@ -11703,7 +11298,7 @@ definitions: - temporary - timeout - fault - ChatCreditUsageConflictResponseBody: + AuthSwitchScopesInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11726,19 +11321,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: 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 @@ -11746,7 +11341,7 @@ definitions: - temporary - timeout - fault - ChatCreditUsageForbiddenResponseBody: + AuthSwitchScopesNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11774,14 +11369,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (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 - timeout: true + timeout: false required: - name - id @@ -11789,14 +11384,14 @@ definitions: - temporary - timeout - fault - ChatCreditUsageGatewayErrorResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11812,19 +11407,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: 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 + temporary: true + timeout: false required: - name - id @@ -11832,7 +11427,7 @@ definitions: - temporary - timeout - fault - ChatCreditUsageInvalidResponseBody: + AuthSwitchScopesUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -11859,15 +11454,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: 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 @@ -11875,14 +11470,14 @@ definitions: - temporary - timeout - fault - ChatCreditUsageInvariantViolationResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -11903,9 +11498,9 @@ definitions: 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 @@ -11918,7 +11513,181 @@ definitions: - temporary - timeout - fault - ChatCreditUsageNotFoundResponseBody: + 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: @@ -11941,14 +11710,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 not found (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 @@ -11961,27 +11730,7 @@ definitions: - 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: + ChatCreditUsageConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12008,8 +11757,8 @@ 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: true id: 123abc @@ -12024,7 +11773,7 @@ definitions: - temporary - timeout - fault - ChatCreditUsageUnexpectedResponseBody: + ChatCreditUsageForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12052,13 +11801,13 @@ 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 + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -12067,7 +11816,7 @@ definitions: - temporary - timeout - fault - ChatCreditUsageUnsupportedMediaResponseBody: + ChatCreditUsageGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12090,14 +11839,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: unsupported media type (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 @@ -12110,7 +11859,7 @@ definitions: - temporary - timeout - fault - ChatListChatsBadRequestResponseBody: + ChatCreditUsageInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12133,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: false - description: request is invalid (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: false - timeout: true + timeout: false required: - name - id @@ -12153,14 +11902,14 @@ definitions: - temporary - timeout - fault - ChatListChatsConflictResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12176,18 +11925,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: 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 @@ -12196,7 +11945,7 @@ definitions: - temporary - timeout - fault - ChatListChatsForbiddenResponseBody: + ChatCreditUsageNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12219,19 +11968,82 @@ 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 + 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: permission denied (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: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -12239,7 +12051,7 @@ definitions: - temporary - timeout - fault - ChatListChatsGatewayErrorResponseBody: + ChatCreditUsageUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12262,14 +12074,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -12282,14 +12094,14 @@ definitions: - temporary - timeout - fault - ChatListChatsInvalidResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12309,15 +12121,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: unsupported media type (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 @@ -12325,7 +12137,7 @@ definitions: - temporary - timeout - fault - ChatListChatsInvariantViolationResponseBody: + ChatListChatsBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12352,15 +12164,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + 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 + timeout: false required: - name - id @@ -12368,7 +12180,7 @@ definitions: - temporary - timeout - fault - ChatListChatsNotFoundResponseBody: + ChatListChatsConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12396,9 +12208,9 @@ definitions: type: boolean description: Is the error a timeout? example: true - 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 @@ -12411,7 +12223,7 @@ definitions: - temporary - timeout - fault - ChatListChatsUnauthorizedResponseBody: + ChatListChatsForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12439,14 +12251,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (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 - timeout: true + timeout: false required: - name - id @@ -12454,7 +12266,7 @@ definitions: - temporary - timeout - fault - ChatListChatsUnexpectedResponseBody: + ChatListChatsGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12481,7 +12293,93 @@ definitions: 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 @@ -12497,7 +12395,7 @@ definitions: - temporary - timeout - fault - ChatListChatsUnsupportedMediaResponseBody: + ChatListChatsNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12525,13 +12423,13 @@ definitions: 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 + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -12540,14 +12438,14 @@ definitions: - temporary - timeout - fault - ChatLoadChatBadRequestResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -12567,8 +12465,8 @@ 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: false id: 123abc @@ -12583,7 +12481,7 @@ definitions: - temporary - timeout - fault - ChatLoadChatConflictResponseBody: + ChatListChatsUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12610,15 +12508,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource already exists (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: false - timeout: false + timeout: true required: - name - id @@ -12626,7 +12524,7 @@ definitions: - temporary - timeout - fault - ChatLoadChatForbiddenResponseBody: + ChatListChatsUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12649,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: true - 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: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -12669,7 +12567,7 @@ definitions: - temporary - timeout - fault - ChatLoadChatGatewayErrorResponseBody: + ChatLoadChatBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12697,14 +12595,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -12712,7 +12610,7 @@ definitions: - temporary - timeout - fault - ChatLoadChatInvalidResponseBody: + ChatLoadChatConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12739,14 +12637,14 @@ 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: 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 @@ -12755,7 +12653,7 @@ definitions: - temporary - timeout - fault - ChatLoadChatInvariantViolationResponseBody: + ChatLoadChatForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12783,13 +12681,13 @@ definitions: 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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -12798,7 +12696,7 @@ definitions: - temporary - timeout - fault - ChatLoadChatNotFoundResponseBody: + ChatLoadChatGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12825,14 +12723,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource not found (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 @@ -12841,7 +12739,7 @@ definitions: - temporary - timeout - fault - ChatLoadChatUnauthorizedResponseBody: + ChatLoadChatInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12861,6 +12759,49 @@ 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: 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? @@ -12869,7 +12810,50 @@ 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 + 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 @@ -12884,7 +12868,7 @@ definitions: - temporary - timeout - fault - ChatLoadChatUnexpectedResponseBody: + ChatLoadChatUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -12911,7 +12895,50 @@ 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: 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 @@ -12961,8 +12988,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 @@ -12977,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 @@ -13033,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 @@ -13086,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: @@ -13113,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: @@ -13131,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: @@ -13187,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 @@ -13243,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: @@ -13259,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 @@ -13268,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 @@ -13316,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 @@ -13448,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 @@ -13486,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 @@ -13526,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 @@ -13550,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 @@ -13569,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 @@ -13609,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. @@ -13625,14 +13642,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 @@ -13652,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. @@ -13672,7 +13689,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource already exists (default view) example: fault: false @@ -13680,7 +13697,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -13754,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? @@ -13801,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 @@ -13809,7 +13826,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -13840,19 +13857,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: 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 @@ -13867,7 +13884,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. @@ -13883,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 @@ -13914,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. @@ -13949,107 +13970,59 @@ 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 - properties: - fault: - type: boolean - description: Is the error a server-side fault? - example: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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 - DeploymentsCreateDeploymentUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -14077,7 +14050,7 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (default view) + description: unauthorized access (default view) example: fault: true id: 123abc @@ -14092,7 +14065,7 @@ definitions: - temporary - timeout - fault - DeploymentsCreateDeploymentUnsupportedMediaResponseBody: + DeploymentsCreateDeploymentUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -14115,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: true - description: unsupported media type (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 + timeout: true required: - name - id @@ -14135,7 +14108,7 @@ definitions: - temporary - timeout - fault - DeploymentsEvolveBadRequestResponseBody: + DeploymentsCreateDeploymentUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -14158,19 +14131,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: 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: false + timeout: true required: - name - id @@ -14178,7 +14151,7 @@ definitions: - temporary - timeout - fault - DeploymentsEvolveConflictResponseBody: + DeploymentsEvolveBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -14205,7 +14178,50 @@ definitions: 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 @@ -14244,11 +14260,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: false @@ -14256,7 +14272,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -14271,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. @@ -14314,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. @@ -14334,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 @@ -14373,18 +14389,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) 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 @@ -14420,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 @@ -14443,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 @@ -14562,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. @@ -14605,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. @@ -14621,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? @@ -14633,7 +14658,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -14648,7 +14673,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. @@ -14668,14 +14693,14 @@ 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: false + temporary: true timeout: false required: - name @@ -14691,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. @@ -14711,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 @@ -14750,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 @@ -14777,7 +14802,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. @@ -14793,7 +14818,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -14804,8 +14829,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 @@ -14820,7 +14845,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. @@ -14836,11 +14861,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 @@ -14886,7 +14911,7 @@ 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 @@ -14922,14 +14947,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 @@ -14949,7 +14974,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. @@ -14965,18 +14990,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: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -14992,7 +15017,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. @@ -15012,7 +15037,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: true @@ -15020,7 +15045,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -15058,7 +15083,7 @@ 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 @@ -15101,11 +15126,11 @@ definitions: 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 + temporary: true timeout: true required: - name @@ -15121,7 +15146,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. @@ -15141,7 +15166,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: false @@ -15149,7 +15174,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -15180,14 +15205,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 @@ -15223,7 +15248,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -15234,8 +15259,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 @@ -15293,7 +15318,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. @@ -15309,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: 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 @@ -15336,7 +15361,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. @@ -15352,19 +15377,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -15379,50 +15404,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: 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 - 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. @@ -15443,7 +15425,7 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) + description: request is invalid (default view) example: fault: true id: 123abc @@ -15458,7 +15440,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsForbiddenResponseBody: + DeploymentsGetDeploymentLogsConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15486,9 +15468,9 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (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 @@ -15501,14 +15483,14 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsGatewayErrorResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -15528,8 +15510,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: an unexpected error occurred (default view) + example: false + description: permission denied (default view) example: fault: true id: 123abc @@ -15544,7 +15526,7 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsInvalidResponseBody: + DeploymentsGetDeploymentLogsGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -15567,12 +15549,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: an unexpected error occurred (default view) example: fault: true id: 123abc @@ -15587,14 +15569,57 @@ definitions: - temporary - timeout - fault - DeploymentsGetDeploymentLogsInvariantViolationResponseBody: + 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. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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. @@ -15621,7 +15646,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -15657,7 +15682,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: resource not found (default view) example: fault: true @@ -15665,7 +15690,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -15680,7 +15705,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. @@ -15696,7 +15721,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -15723,7 +15748,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. @@ -15750,8 +15775,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 @@ -15782,19 +15807,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -15825,19 +15850,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: false - timeout: true + timeout: false required: - name - id @@ -15852,7 +15877,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. @@ -15875,12 +15900,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: true - timeout: false + timeout: true required: - name - id @@ -15895,7 +15920,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. @@ -15911,18 +15936,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: false + temporary: true timeout: false required: - name @@ -15938,7 +15963,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. @@ -15954,18 +15979,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: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -15997,7 +16022,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -16008,8 +16033,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 @@ -16024,7 +16049,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. @@ -16040,18 +16065,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 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 @@ -16083,19 +16108,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -16110,7 +16135,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. @@ -16130,10 +16155,10 @@ 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 @@ -16153,7 +16178,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. @@ -16169,19 +16194,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: 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 @@ -16196,7 +16221,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. @@ -16219,12 +16244,12 @@ 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: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -16239,7 +16264,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. @@ -16259,14 +16284,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 @@ -16302,15 +16327,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: false - timeout: true + timeout: false required: - name - id @@ -16325,7 +16350,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. @@ -16348,11 +16373,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: true required: - name @@ -16384,19 +16409,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -16411,7 +16436,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. @@ -16431,10 +16456,10 @@ 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 @@ -16454,7 +16479,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. @@ -16470,14 +16495,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 already exists (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -16497,7 +16522,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. @@ -16517,15 +16542,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 + temporary: true + timeout: false required: - name - id @@ -16540,7 +16565,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. @@ -16560,15 +16585,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 @@ -16583,7 +16608,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. @@ -16599,7 +16624,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -16610,7 +16635,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -16669,7 +16694,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. @@ -16696,8 +16721,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 @@ -16735,7 +16760,7 @@ 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 @@ -16755,7 +16780,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. @@ -16782,8 +16807,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 @@ -16818,7 +16843,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: false @@ -16826,7 +16851,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -16857,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 + 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 @@ -16907,11 +16932,11 @@ 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 - temporary: true + temporary: false timeout: false required: - name @@ -16927,7 +16952,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. @@ -16943,19 +16968,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 @@ -16986,18 +17011,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 @@ -17029,14 +17054,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 @@ -17076,14 +17101,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -17122,11 +17147,11 @@ 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 - temporary: false + temporary: true timeout: true required: - name @@ -17142,9 +17167,9 @@ definitions: deployment_id: type: string description: The ID of the deployment to redeploy. - example: Provident assumenda id dignissimos. + example: Voluptas non vel unde quam esse rerum. example: - deployment_id: Ratione molestias minima. + deployment_id: Ipsum quidem. required: - deployment_id DeploymentsRedeployUnauthorizedResponseBody: @@ -17181,7 +17206,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -17217,14 +17242,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 @@ -17267,7 +17292,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -17283,7 +17308,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. @@ -17303,15 +17328,15 @@ 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: true - timeout: true + timeout: false required: - name - id @@ -17326,7 +17351,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. @@ -17342,14 +17367,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: resource already exists (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -17385,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: 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 @@ -17428,19 +17453,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -17455,7 +17480,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. @@ -17478,11 +17503,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 @@ -17514,19 +17539,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -17541,7 +17566,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. @@ -17557,7 +17582,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -17568,7 +17593,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -17584,9 +17609,9 @@ definitions: domain: type: string description: The custom domain - example: Id itaque. + example: At fugiat debitis. example: - domain: Et soluta quia. + domain: Quae qui dolorum. required: - domain DomainsCreateDomainUnauthorizedResponseBody: @@ -17596,7 +17621,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. @@ -17612,7 +17637,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -17624,7 +17649,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -17639,7 +17664,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. @@ -17655,11 +17680,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: false @@ -17682,7 +17707,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. @@ -17698,14 +17723,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -17741,7 +17766,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -17752,7 +17777,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -17768,7 +17793,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. @@ -17795,7 +17820,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -17831,14 +17856,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: false + temporary: true timeout: false required: - name @@ -17854,7 +17879,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. @@ -17870,7 +17895,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -17897,7 +17922,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. @@ -17920,12 +17945,12 @@ definitions: 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: true - timeout: true + timeout: false required: - name - id @@ -17963,7 +17988,7 @@ 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 @@ -17983,7 +18008,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. @@ -18006,7 +18031,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 @@ -18046,7 +18071,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: true @@ -18096,7 +18121,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -18112,7 +18137,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. @@ -18128,7 +18153,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -18155,7 +18180,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. @@ -18175,14 +18200,14 @@ 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: false + temporary: true timeout: true required: - name @@ -18198,7 +18223,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. @@ -18214,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: 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 - timeout: false + temporary: false + timeout: true required: - name - id @@ -18241,7 +18266,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. @@ -18257,7 +18282,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -18268,7 +18293,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -18284,7 +18309,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. @@ -18300,11 +18325,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 @@ -18312,7 +18337,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -18343,18 +18368,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 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 @@ -18386,7 +18411,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -18397,7 +18422,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -18413,7 +18438,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. @@ -18441,7 +18466,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -18456,7 +18481,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. @@ -18472,14 +18497,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 @@ -18526,7 +18551,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -18558,19 +18583,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: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -18585,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 @@ -18678,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 @@ -18711,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 @@ -18773,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. @@ -18789,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 @@ -18816,7 +18837,50 @@ 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. + example: 123abc + message: + type: string + description: Message is a human-readable explanation specific to this occurrence of the problem. + example: parameter 'p' must be an integer + name: + type: string + description: Name is the name of this class of errors. + example: 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. @@ -18837,14 +18901,14 @@ 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 - timeout: true + timeout: false required: - name - id @@ -18852,7 +18916,7 @@ definitions: - temporary - timeout - fault - EnvironmentsCreateEnvironmentGatewayErrorResponseBody: + EnvironmentsCreateEnvironmentInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -18872,49 +18936,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: 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 - 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? @@ -18925,7 +18946,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 @@ -18965,7 +18986,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 @@ -18973,7 +18994,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -18988,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. @@ -19004,18 +19025,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 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 @@ -19031,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 @@ -19072,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. @@ -19088,19 +19111,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: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -19135,15 +19158,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: true + temporary: true + timeout: false required: - name - id @@ -19174,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 @@ -19228,7 +19251,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -19264,10 +19287,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 @@ -19287,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. @@ -19303,11 +19326,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: permission denied (default view) example: fault: true @@ -19350,14 +19373,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -19373,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. @@ -19401,7 +19424,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -19416,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. @@ -19432,11 +19455,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 @@ -19475,18 +19498,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -19502,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. @@ -19529,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 @@ -19545,7 +19568,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: 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. @@ -19566,9 +19632,9 @@ definitions: 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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -19581,7 +19647,93 @@ definitions: - temporary - timeout - fault - EnvironmentsDeleteEnvironmentUnsupportedMediaResponseBody: + 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: @@ -19604,147 +19756,18 @@ definitions: 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 - 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: 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 - 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: 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 - 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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -19776,14 +19799,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 @@ -19819,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 @@ -19831,7 +19854,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -19866,15 +19889,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: true + timeout: false required: - name - id @@ -19889,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. @@ -19912,11 +19935,11 @@ 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: false + temporary: true timeout: true required: - name @@ -19932,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. @@ -19948,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 @@ -20003,7 +20026,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -20018,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. @@ -20038,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 @@ -20061,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. @@ -20077,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 @@ -20104,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. @@ -20120,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 @@ -20140,14 +20163,14 @@ definitions: - temporary - timeout - fault - EnvironmentsUpdateEnvironmentBadRequestResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -20167,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 @@ -20183,14 +20206,14 @@ definitions: - temporary - timeout - fault - EnvironmentsUpdateEnvironmentConflictResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -20206,14 +20229,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: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -20226,7 +20249,7 @@ definitions: - temporary - timeout - fault - EnvironmentsUpdateEnvironmentForbiddenResponseBody: + EnvironmentsUpdateEnvironmentInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -20254,7 +20277,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: permission denied (default view) + description: request contains one or more invalidation fields (default view) example: fault: true id: 123abc @@ -20269,7 +20292,7 @@ definitions: - temporary - timeout - fault - EnvironmentsUpdateEnvironmentGatewayErrorResponseBody: + EnvironmentsUpdateEnvironmentInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -20292,55 +20315,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: 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 - 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 @@ -20355,7 +20335,7 @@ definitions: - temporary - timeout - fault - EnvironmentsUpdateEnvironmentInvariantViolationResponseBody: + EnvironmentsUpdateEnvironmentNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -20378,61 +20358,18 @@ definitions: 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: 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 @@ -20448,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 @@ -20494,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. @@ -20514,15 +20454,15 @@ 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: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -20537,7 +20477,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. @@ -20553,19 +20493,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 @@ -20596,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 @@ -20630,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 @@ -20674,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 @@ -20704,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 @@ -20778,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 @@ -20787,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 @@ -20845,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 @@ -20961,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: @@ -20975,337 +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 + - 85 - 116 - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 100 - - 105 - - 103 - - 110 - - 105 - - 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 - - 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: 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. - - 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: type: array items: @@ -21314,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. + - 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 - - 116 - - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 115 - - 105 + - 85 - 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 + - 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. - 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: - name - tools @@ -22228,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 @@ -22268,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: @@ -22324,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 @@ -22364,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 @@ -22566,14 +22520,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: request is invalid (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -22609,7 +22563,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -22636,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. @@ -22652,19 +22606,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 + timeout: false required: - name - id @@ -22679,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. @@ -22702,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 @@ -22722,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. @@ -22749,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 @@ -22785,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 @@ -22808,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. @@ -22828,15 +22782,15 @@ 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 - timeout: false + temporary: false + timeout: true required: - name - id @@ -22867,19 +22821,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -22910,19 +22864,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -22937,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. @@ -22957,14 +22911,14 @@ 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: false + temporary: true timeout: false required: - name @@ -22979,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 @@ -23081,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 @@ -23150,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 @@ -23188,14 +23140,14 @@ 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 + temporary: false timeout: false required: - name @@ -23227,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 @@ -23254,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. @@ -23277,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 @@ -23297,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. @@ -23313,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 @@ -23333,14 +23285,14 @@ definitions: - temporary - timeout - fault - IntegrationsGetConflictResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23361,14 +23313,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource already exists (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 - timeout: true + temporary: false + timeout: false required: - name - id @@ -23376,7 +23328,7 @@ definitions: - temporary - timeout - fault - IntegrationsGetForbiddenResponseBody: + IntegrationsGetInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -23404,14 +23356,14 @@ 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 - timeout: false + timeout: true required: - name - id @@ -23419,7 +23371,7 @@ definitions: - temporary - timeout - fault - IntegrationsGetInvariantViolationResponseBody: + IntegrationsGetNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -23447,13 +23399,13 @@ 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 + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -23462,14 +23414,14 @@ definitions: - temporary - timeout - fault - IntegrationsGetNotFoundResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23490,14 +23442,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource not found (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 @@ -23505,14 +23457,14 @@ definitions: - temporary - timeout - fault - IntegrationsGetUnauthorizedResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -23533,14 +23485,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -23548,7 +23500,7 @@ definitions: - temporary - timeout - fault - IntegrationsGetUnexpectedResponseBody: + IntegrationsGetUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -23576,7 +23528,50 @@ definitions: 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 + 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 @@ -23591,7 +23586,7 @@ definitions: - temporary - timeout - fault - IntegrationsGetUnsupportedMediaResponseBody: + IntegrationsListConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -23615,11 +23610,54 @@ definitions: 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: unsupported media type (default view) + description: permission denied (default view) example: fault: true id: 123abc @@ -23634,50 +23672,7 @@ definitions: - 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: 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: + IntegrationsListGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -23705,56 +23700,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource already exists (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 - 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: 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 @@ -23763,49 +23715,6 @@ definitions: - 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: 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 IntegrationsListInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object @@ -23836,12 +23745,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 + temporary: false + timeout: true required: - name - id @@ -23872,11 +23781,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 @@ -23884,7 +23793,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -23926,8 +23835,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 @@ -23942,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. @@ -23965,11 +23874,11 @@ 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 + temporary: true timeout: false required: - name @@ -23985,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. @@ -24001,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 @@ -24048,14 +23957,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: true required: - name @@ -24071,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 @@ -24162,19 +24071,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 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 @@ -24189,7 +24098,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. @@ -24217,7 +24126,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -24232,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. @@ -24248,7 +24157,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -24259,8 +24168,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 @@ -24275,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. @@ -24298,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 @@ -24318,7 +24227,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. @@ -24334,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? @@ -24345,7 +24254,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -24361,7 +24270,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. @@ -24381,15 +24290,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 @@ -24404,7 +24313,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. @@ -24424,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 @@ -24447,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 @@ -24489,14 +24398,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: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -24544,7 +24453,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -24559,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. @@ -24579,7 +24488,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: unsupported media type (default view) example: fault: true @@ -24587,7 +24496,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -24602,7 +24511,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. @@ -24661,19 +24570,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 already exists (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 @@ -24704,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: 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: true required: - name @@ -24754,12 +24663,12 @@ 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 - timeout: false + temporary: false + timeout: true required: - name - id @@ -24790,7 +24699,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -24801,8 +24710,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 @@ -24817,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. @@ -24837,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 @@ -24876,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 @@ -24919,19 +24828,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -24946,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. @@ -24962,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 @@ -24989,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. @@ -25005,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: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -25032,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. @@ -25052,14 +24961,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: false + temporary: true timeout: true required: - name @@ -25095,15 +25004,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + 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 + temporary: true + timeout: false required: - name - id @@ -25118,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. @@ -25184,11 +25093,11 @@ 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: false + temporary: true timeout: true required: - name @@ -25204,7 +25113,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. @@ -25224,15 +25133,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -25267,10 +25176,10 @@ 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 @@ -25313,7 +25222,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 @@ -25333,7 +25242,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. @@ -25349,14 +25258,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: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -25399,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 @@ -25419,7 +25328,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. @@ -25439,15 +25348,15 @@ definitions: 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 @@ -25465,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: @@ -25521,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: @@ -25571,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 @@ -25629,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: @@ -25818,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_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" example: integrations: - - 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" ListKeysResult: title: ListKeysResult type: object @@ -25941,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. - 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. + - 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" + - 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: @@ -26033,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. + - 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. - 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. + - 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: @@ -26183,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: @@ -26216,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: @@ -26466,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: @@ -26475,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: @@ -27154,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 - - 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: + - 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: - - 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. + 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. + - 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. - 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: + - 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" 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 - - 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: - - 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: @@ -28007,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. - 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. + - 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. - 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: @@ -28120,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 @@ -28198,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 @@ -28244,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. @@ -28271,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 @@ -28303,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 @@ -28357,7 +28552,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -28373,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. @@ -28389,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: true - timeout: true + timeout: false required: - name - id @@ -28432,19 +28627,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -28487,7 +28682,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -28518,14 +28713,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 @@ -28546,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 @@ -28559,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. @@ -28575,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 @@ -28618,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? @@ -28630,7 +28825,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -28665,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 @@ -28688,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. @@ -28708,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 @@ -28747,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 @@ -28774,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. @@ -28794,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 @@ -28833,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 @@ -28876,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 @@ -28923,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 @@ -28962,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? @@ -28973,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 @@ -28989,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: @@ -29033,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 @@ -29076,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 @@ -29084,7 +29279,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -29099,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. @@ -29115,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 @@ -29127,7 +29322,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -29142,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 @@ -29230,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 @@ -29382,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 @@ -29413,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 @@ -29473,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 @@ -29574,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 @@ -29617,7 +29812,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. @@ -29633,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 @@ -29660,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. @@ -29687,7 +29882,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -29703,7 +29898,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. @@ -29726,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 @@ -29746,7 +29941,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. @@ -29762,11 +29957,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 @@ -29789,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. @@ -29805,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 @@ -29848,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: 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 @@ -29875,7 +30070,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. @@ -29895,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: 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 @@ -29918,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 @@ -29995,19 +30190,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: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -30038,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 @@ -30081,19 +30276,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: true + temporary: true + timeout: false required: - name - id @@ -30124,19 +30319,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: true - timeout: true + timeout: false required: - name - id @@ -30174,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 @@ -30194,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. @@ -30210,19 +30405,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: true + timeout: false required: - name - id @@ -30253,19 +30448,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: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -30300,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -30339,14 +30534,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 @@ -30366,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. @@ -30382,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 @@ -30409,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. @@ -30425,14 +30620,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: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -30468,11 +30663,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 @@ -30495,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. @@ -30511,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? @@ -30523,7 +30718,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -30538,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. @@ -30554,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 @@ -30597,11 +30792,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: true @@ -30609,7 +30804,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -30640,7 +30835,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -30651,8 +30846,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 @@ -30667,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. @@ -30687,7 +30882,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 @@ -30733,7 +30928,7 @@ definitions: 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 @@ -30769,7 +30964,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -30780,7 +30975,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -30796,7 +30991,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. @@ -30859,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 @@ -30882,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. @@ -30898,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? @@ -30909,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 @@ -30925,7 +31120,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. @@ -30948,12 +31143,12 @@ definitions: 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 @@ -30988,7 +31183,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: true @@ -30996,7 +31191,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -31011,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. @@ -31034,11 +31229,11 @@ 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 + temporary: false timeout: true required: - name @@ -31070,11 +31265,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: permission denied (default view) example: fault: true @@ -31091,49 +31286,6 @@ definitions: - 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: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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 - PackagesPublishInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -31160,8 +31312,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: an unexpected error occurred (default view) example: fault: true id: 123abc @@ -31176,7 +31328,7 @@ definitions: - temporary - timeout - fault - PackagesPublishInvariantViolationResponseBody: + PackagesPublishInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -31204,14 +31356,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: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -31219,7 +31371,7 @@ definitions: - temporary - timeout - fault - PackagesPublishNotFoundResponseBody: + PackagesPublishInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -31242,18 +31394,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) + 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 @@ -31285,19 +31437,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: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -31312,15 +31464,15 @@ 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 @@ -31329,10 +31481,10 @@ definitions: - 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 @@ -31345,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. @@ -31365,15 +31517,15 @@ 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: false - timeout: true + timeout: false required: - name - id @@ -31388,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. @@ -31404,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: 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: true required: - name @@ -31447,7 +31599,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -31458,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 @@ -31474,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. @@ -31501,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 @@ -31545,7 +31697,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -31560,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. @@ -31576,7 +31728,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -31587,7 +31739,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -31619,19 +31771,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -31646,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. @@ -31662,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 @@ -31689,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. @@ -31705,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 @@ -31774,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: @@ -31786,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: @@ -31844,7 +31996,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. @@ -31864,7 +32016,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: unauthorized access (default view) example: fault: true @@ -31872,7 +32024,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -31887,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. @@ -31903,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 @@ -31946,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 @@ -31973,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 @@ -32014,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 @@ -32065,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 @@ -32091,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. @@ -32111,15 +32263,15 @@ 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 - timeout: false + temporary: true + timeout: true required: - name - id @@ -32150,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? @@ -32197,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 @@ -32236,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 @@ -32283,14 +32435,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: true required: - name @@ -32306,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. @@ -32326,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 @@ -32349,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. @@ -32365,19 +32517,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: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -32392,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 @@ -32411,7 +32563,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. @@ -32427,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: true + 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 + temporary: false + timeout: false required: - name - id @@ -32470,11 +32622,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: false @@ -32482,7 +32634,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -32497,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. @@ -32513,18 +32665,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -32540,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. @@ -32567,8 +32719,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 @@ -32583,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. @@ -32599,14 +32751,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -32642,7 +32794,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -32653,8 +32805,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 @@ -32669,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. @@ -32697,7 +32849,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -32728,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 @@ -32771,7 +32923,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -32814,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 @@ -32864,7 +33016,7 @@ 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 @@ -32884,7 +33036,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. @@ -32904,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 @@ -32927,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. @@ -32943,19 +33095,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: 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 + temporary: false + timeout: true required: - name - id @@ -32970,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. @@ -32993,7 +33145,7 @@ 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 @@ -33013,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. @@ -33029,19 +33181,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: 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 @@ -33072,18 +33224,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: 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 @@ -33099,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. @@ -33115,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 @@ -33142,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. @@ -33158,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: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -33201,11 +33353,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 @@ -33213,7 +33365,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -33244,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: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -33271,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: @@ -33283,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. @@ -33299,18 +33451,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: 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 @@ -33346,15 +33498,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: true + timeout: false required: - name - id @@ -33385,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 @@ -33414,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 @@ -33441,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 @@ -33456,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 @@ -33575,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 @@ -33603,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 @@ -33644,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: @@ -33657,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 @@ -33696,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 - - 117 - - 105 - - 32 - - 118 - - 111 - - 108 + - 83 - 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 @@ -33820,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 @@ -33849,13 +34013,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 SlackCallbackBadRequestResponseBody: @@ -33865,7 +34029,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. @@ -33885,14 +34049,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: false + temporary: true timeout: true required: - name @@ -33908,7 +34072,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. @@ -33924,7 +34088,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -33935,7 +34099,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -33951,7 +34115,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. @@ -33967,19 +34131,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: true - timeout: false + timeout: true required: - name - id @@ -34014,15 +34178,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 @@ -34060,11 +34224,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: false + temporary: true timeout: false required: - name @@ -34080,7 +34244,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. @@ -34182,7 +34346,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34236,7 +34400,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -34252,7 +34416,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. @@ -34268,11 +34432,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 @@ -34311,19 +34475,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 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 @@ -34338,7 +34502,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. @@ -34361,12 +34525,12 @@ 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: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -34408,7 +34572,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -34424,7 +34588,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. @@ -34440,7 +34604,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -34467,7 +34631,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. @@ -34487,7 +34651,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: false @@ -34495,7 +34659,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -34526,7 +34690,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -34537,8 +34701,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 @@ -34569,11 +34733,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 @@ -34581,7 +34745,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -34612,11 +34776,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: unauthorized access (default view) example: fault: true @@ -34624,7 +34788,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -34639,7 +34803,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. @@ -34655,18 +34819,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 @@ -34709,7 +34873,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -34747,12 +34911,98 @@ definitions: 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 @@ -34761,7 +35011,7 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionConflictResponseBody: + SlackGetSlackConnectionGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34788,14 +35038,100 @@ definitions: 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 - description: resource already exists (default view) + 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 + 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 @@ -34804,7 +35140,7 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionForbiddenResponseBody: + SlackGetSlackConnectionNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34827,18 +35163,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: permission denied (default view) + 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 @@ -34847,7 +35183,7 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionGatewayErrorResponseBody: + SlackGetSlackConnectionUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -34870,61 +35206,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: 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 - 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 - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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 @@ -34933,14 +35226,14 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionInvariantViolationResponseBody: + 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. @@ -34963,55 +35256,12 @@ definitions: 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 - 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 - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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 + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -35019,7 +35269,7 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionUnauthorizedResponseBody: + SlackGetSlackConnectionUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35046,8 +35296,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (default view) + example: true + description: unsupported media type (default view) example: fault: false id: 123abc @@ -35062,14 +35312,14 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionUnexpectedResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -35090,13 +35340,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: true required: - name @@ -35105,14 +35355,14 @@ definitions: - temporary - timeout - fault - SlackGetSlackConnectionUnsupportedMediaResponseBody: + 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. @@ -35128,19 +35378,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: unsupported media type (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 @@ -35148,7 +35398,7 @@ definitions: - temporary - timeout - fault - SlackLoginBadRequestResponseBody: + SlackLoginForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35176,14 +35426,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: request is invalid (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 - timeout: true + timeout: false required: - name - id @@ -35191,57 +35441,14 @@ definitions: - temporary - timeout - fault - SlackLoginConflictResponseBody: + 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 - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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 - 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. @@ -35262,7 +35469,7 @@ 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 @@ -35277,7 +35484,7 @@ definitions: - temporary - timeout - fault - SlackLoginGatewayErrorResponseBody: + SlackLoginInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35300,18 +35507,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: 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 @@ -35320,7 +35527,7 @@ definitions: - temporary - timeout - fault - SlackLoginInvalidResponseBody: + SlackLoginInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35343,18 +35550,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: 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 @@ -35363,7 +35570,7 @@ definitions: - temporary - timeout - fault - SlackLoginInvariantViolationResponseBody: + SlackLoginNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35390,14 +35597,14 @@ 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: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -35406,7 +35613,7 @@ definitions: - temporary - timeout - fault - SlackLoginNotFoundResponseBody: + SlackLoginUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35429,18 +35636,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: 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 @@ -35449,7 +35656,7 @@ definitions: - temporary - timeout - fault - SlackLoginUnauthorizedResponseBody: + SlackLoginUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35472,18 +35679,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) + 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 @@ -35492,7 +35699,7 @@ definitions: - temporary - timeout - fault - SlackLoginUnexpectedResponseBody: + SlackLoginUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35515,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 - description: an unexpected error occurred (default view) + 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 + timeout: false required: - name - id @@ -35535,7 +35742,7 @@ definitions: - temporary - timeout - fault - SlackLoginUnsupportedMediaResponseBody: + SlackUpdateSlackConnectionBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35563,14 +35770,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: unsupported media type (default view) + 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 + timeout: false required: - name - id @@ -35578,7 +35785,7 @@ definitions: - temporary - timeout - fault - SlackUpdateSlackConnectionBadRequestResponseBody: + SlackUpdateSlackConnectionConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -35601,50 +35808,7 @@ definitions: 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 - 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: false timeout: type: boolean description: Is the error a timeout? @@ -35691,14 +35855,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: false + temporary: true timeout: false required: - name @@ -35730,19 +35894,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: false - timeout: false + timeout: true required: - name - id @@ -35777,15 +35941,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 @@ -35800,7 +35964,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. @@ -35820,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -35863,7 +36027,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: fault: false @@ -35871,7 +36035,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -35886,9 +36050,9 @@ definitions: default_toolset_slug: type: string description: The default toolset slug for this Slack connection - example: Necessitatibus animi iure earum. + example: Vel et voluptatum repudiandae cum enim est. example: - default_toolset_slug: Sunt porro molestiae velit fugiat inventore. + default_toolset_slug: Sit illo. required: - default_toolset_slug SlackUpdateSlackConnectionUnauthorizedResponseBody: @@ -35898,7 +36062,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. @@ -35914,19 +36078,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: unauthorized access (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 @@ -35941,7 +36105,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. @@ -35957,7 +36121,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -35968,8 +36132,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 @@ -35984,7 +36148,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. @@ -36027,7 +36191,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. @@ -36070,7 +36234,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. @@ -36086,19 +36250,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: - 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 @@ -36113,7 +36277,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. @@ -36156,7 +36320,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. @@ -36183,7 +36347,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -36199,7 +36363,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. @@ -36215,14 +36379,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: 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 @@ -36242,7 +36406,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. @@ -36269,7 +36433,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -36301,19 +36465,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: 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 + timeout: true required: - name - id @@ -36333,7 +36497,7 @@ definitions: description: type: string description: The description of the prompt template - example: Omnis consequatur ipsa est possimus sunt. + example: Delectus sequi doloremque odio. engine: type: string description: The template engine @@ -36350,35 +36514,35 @@ definitions: name: type: string description: The name of the prompt template - example: "424" + example: yyh pattern: ^[a-z0-9_-]{1,128}$ maxLength: 40 prompt: type: string description: The template content - example: Dolorem iusto dicta deserunt id. + example: Consequatur voluptatum quo nisi consequatur nisi doloremque. tools_hint: type: array items: type: string - example: Et impedit facilis esse ipsum aspernatur. + example: Aspernatur numquam ad necessitatibus optio earum. description: The suggested tool names associated with the prompt template example: - - Fugiat saepe. - - Quae enim. - - Aperiam vel veniam. + - 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: Quia non dolore. + description: Cum et harum dicta. engine: mustache - kind: higher_order_tool - name: 5uf - prompt: Id quia autem incidunt. + kind: prompt + name: 1z6 + prompt: Non dolor doloremque ipsam corrupti fugiat modi. tools_hint: - - Sit adipisci sint sed sapiente et. - - Voluptates reiciendis quia pariatur. - - Debitis rerum mollitia tempora necessitatibus. + - Aspernatur molestiae dicta sequi eos. + - Veritatis recusandae velit aliquam odit fuga officiis. + - Aperiam a nam temporibus. required: - name - prompt @@ -36414,7 +36578,7 @@ 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 @@ -36434,7 +36598,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. @@ -36454,51 +36618,8 @@ 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: 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 @@ -36513,7 +36634,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateBadRequestResponseBody: + TemplatesCreateTemplateUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36541,9 +36662,9 @@ definitions: type: boolean description: Is the error a timeout? example: true - 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 @@ -36556,7 +36677,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateConflictResponseBody: + TemplatesDeleteTemplateBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36584,56 +36705,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource already exists (default view) + 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 - 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 @@ -36642,7 +36720,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateGatewayErrorResponseBody: + TemplatesDeleteTemplateConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36665,12 +36743,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: an unexpected error occurred (default view) + example: false + description: resource already exists (default view) example: fault: false id: 123abc @@ -36685,7 +36763,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateInvalidResponseBody: + TemplatesDeleteTemplateForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36713,14 +36791,14 @@ definitions: 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 temporary: true - timeout: true + timeout: false required: - name - id @@ -36728,7 +36806,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateInvariantViolationResponseBody: + TemplatesDeleteTemplateGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36771,7 +36849,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateNotFoundResponseBody: + TemplatesDeleteTemplateInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36799,14 +36877,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - 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: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -36814,7 +36892,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateUnauthorizedResponseBody: + TemplatesDeleteTemplateInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36842,14 +36920,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: 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 @@ -36857,14 +36935,14 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateUnexpectedResponseBody: + 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. @@ -36880,19 +36958,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: false + temporary: false + timeout: true required: - name - id @@ -36900,7 +36978,7 @@ definitions: - temporary - timeout - fault - TemplatesDeleteTemplateUnsupportedMediaResponseBody: + TemplatesDeleteTemplateUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36928,7 +37006,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 @@ -36943,7 +37021,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateBadRequestResponseBody: + TemplatesDeleteTemplateUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -36966,12 +37044,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: true id: 123abc @@ -36986,7 +37064,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateConflictResponseBody: + TemplatesDeleteTemplateUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37009,14 +37087,57 @@ 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: 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: resource already exists (default view) + description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -37029,7 +37150,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateForbiddenResponseBody: + TemplatesGetTemplateConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37057,7 +37178,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: permission denied (default view) + description: resource already exists (default view) example: fault: true id: 123abc @@ -37072,7 +37193,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateGatewayErrorResponseBody: + TemplatesGetTemplateForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37100,14 +37221,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 + temporary: false + timeout: false required: - name - id @@ -37115,7 +37236,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateInvalidResponseBody: + TemplatesGetTemplateGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37138,19 +37259,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: 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 @@ -37158,7 +37279,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateInvariantViolationResponseBody: + TemplatesGetTemplateInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37185,14 +37306,14 @@ 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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -37201,7 +37322,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateNotFoundResponseBody: + TemplatesGetTemplateInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37224,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: resource not found (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 @@ -37244,7 +37365,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateUnauthorizedResponseBody: + TemplatesGetTemplateNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37271,15 +37392,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: unauthorized access (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 - timeout: true + temporary: true + timeout: false required: - name - id @@ -37287,7 +37408,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateUnexpectedResponseBody: + TemplatesGetTemplateUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37310,19 +37431,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) + 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 + timeout: false required: - name - id @@ -37330,7 +37451,7 @@ definitions: - temporary - timeout - fault - TemplatesGetTemplateUnsupportedMediaResponseBody: + TemplatesGetTemplateUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37353,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: 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 - timeout: true + timeout: false required: - name - id @@ -37380,7 +37501,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. @@ -37396,7 +37517,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -37408,7 +37529,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -37423,7 +37544,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. @@ -37443,15 +37564,15 @@ 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 - timeout: true + temporary: false + timeout: false required: - name - id @@ -37466,7 +37587,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. @@ -37486,14 +37607,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + 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: false required: - name @@ -37509,7 +37630,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. @@ -37532,11 +37653,11 @@ definitions: 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 + temporary: true timeout: false required: - name @@ -37552,7 +37673,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. @@ -37575,11 +37696,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: false required: - name @@ -37595,7 +37716,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. @@ -37615,15 +37736,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: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -37666,7 +37787,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -37681,7 +37802,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. @@ -37701,7 +37822,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: resource not found (default view) example: fault: true @@ -37724,7 +37845,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. @@ -37746,12 +37867,55 @@ definitions: 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: true + temporary: false timeout: false required: - name @@ -37760,7 +37924,7 @@ definitions: - temporary - timeout - fault - TemplatesListTemplatesUnexpectedResponseBody: + TemplatesListTemplatesUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -37780,49 +37944,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: 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 - 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 - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: bad_request temporary: type: boolean description: Is the error temporary? @@ -37830,10 +37951,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 @@ -37853,7 +37974,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. @@ -37869,14 +37990,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) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -37916,14 +38037,14 @@ 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 + temporary: false timeout: true required: - name @@ -37939,7 +38060,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. @@ -37955,18 +38076,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: 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 @@ -37982,7 +38103,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. @@ -38002,14 +38123,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: false + temporary: true timeout: false required: - name @@ -38025,7 +38146,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. @@ -38041,19 +38162,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: true - timeout: true + timeout: false required: - name - id @@ -38084,18 +38205,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: true + temporary: false timeout: true required: - name @@ -38111,7 +38232,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. @@ -38127,14 +38248,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -38154,7 +38275,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. @@ -38177,12 +38298,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 + timeout: true required: - name - id @@ -38198,12 +38319,13 @@ definitions: type: object description: The input data to render the template with example: - Voluptatem quis eos nisi iste similique impedit.: Quod quaerat blanditiis sit magnam. + Et ut provident deserunt.: Et earum. + Non ut dolores consequatur perferendis dolores voluptatem.: Ratione qui recusandae. additionalProperties: true example: arguments: - Atque eos.: Qui at similique possimus dolores nihil. - Aut asperiores.: Fugit possimus nemo praesentium. + Ex repellat id voluptas et dolorum.: Quibusdam voluptatibus rerum impedit aut odio qui. + Quo deserunt.: Nam dolor voluptatibus vel doloremque blanditiis. required: - arguments TemplatesRenderTemplateByIDUnauthorizedResponseBody: @@ -38229,19 +38351,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: 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 + timeout: true required: - name - id @@ -38272,14 +38394,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 @@ -38322,7 +38444,7 @@ 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 @@ -38358,19 +38480,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: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -38385,7 +38507,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,7 +38527,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false description: permission denied (default view) example: fault: false @@ -38413,7 +38535,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -38428,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. @@ -38451,12 +38573,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: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -38487,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 @@ -38514,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. @@ -38534,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 @@ -38585,7 +38707,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -38601,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 @@ -38613,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 @@ -38641,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. @@ -38664,12 +38786,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: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -38712,7 +38834,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -38727,7 +38849,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. @@ -38747,15 +38869,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 @@ -38783,6 +38905,92 @@ 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: 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? @@ -38791,9 +38999,9 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: request is invalid (default view) + description: permission denied (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -38806,7 +39014,7 @@ definitions: - temporary - timeout - fault - TemplatesUpdateTemplateConflictResponseBody: + TemplatesUpdateTemplateGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -38833,100 +39041,14 @@ definitions: 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: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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 - 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 + temporary: true timeout: true required: - name @@ -38942,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. @@ -38965,7 +39087,7 @@ definitions: 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 @@ -39001,55 +39123,12 @@ 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: 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) + description: an unexpected error occurred (default view) example: fault: false id: 123abc @@ -39064,108 +39143,7 @@ definitions: - 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: + TemplatesUpdateTemplateNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -39188,50 +39166,7 @@ definitions: 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 - 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: true timeout: type: boolean description: Is the error a timeout? @@ -39243,7 +39178,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -39263,7 +39198,7 @@ definitions: description: type: string description: The description of the prompt template - example: Deserunt qui. + example: Commodi ad voluptas veniam hic omnis in. engine: type: string description: The template engine @@ -39273,40 +39208,40 @@ definitions: id: type: string description: The ID of the prompt template to update - example: Eius molestiae. + example: Ipsam accusamus quisquam quia minus. 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 - example: Autem quo voluptatem est at omnis. + example: Ut non id. tools_hint: type: array items: type: string - example: Facere harum molestiae porro quasi quod. + example: Qui quae reiciendis et eaque itaque. description: The suggested tool names associated with the prompt template example: - - Unde corporis. - - Eligendi quasi fugit aut. - - Deleniti animi ullam ipsam ut. + - 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: Rerum nihil qui et vero dolores ducimus. + description: Voluptatem pariatur enim quos. engine: mustache - id: Deleniti in sunt deserunt numquam rerum. + id: Et amet quis eveniet et et. kind: prompt - prompt: Labore debitis est. + prompt: Porro est optio doloremque. tools_hint: - - Ut aspernatur quo temporibus quia et. - - Dolor repellat praesentium eos et quae. - - Sit deserunt in et qui cum. + - Quod optio rerum. + - Est voluptatem. + - Omnis occaecati dolorem natus aspernatur ullam. required: - id TemplatesUpdateTemplateUnauthorizedResponseBody: @@ -39316,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. @@ -39336,14 +39271,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true + example: false 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 @@ -39359,7 +39294,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. @@ -39375,19 +39310,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: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -39418,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 @@ -39446,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 @@ -39545,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 @@ -39661,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 @@ -39677,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 @@ -39693,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 @@ -39772,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. @@ -39792,15 +39734,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: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -39815,7 +39757,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. @@ -39831,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 @@ -39858,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. @@ -39881,12 +39823,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: true + timeout: false required: - name - id @@ -39917,19 +39859,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 + timeout: false required: - name - id @@ -39960,19 +39902,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: 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 @@ -40007,7 +39949,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 @@ -40030,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. @@ -40053,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 @@ -40089,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? @@ -40100,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 @@ -40136,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 @@ -40175,19 +40117,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 + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -40202,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 @@ -40239,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: @@ -40263,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. + - 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. - 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: @@ -40613,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. - 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. 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 + - 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 - - 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. - 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: 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 @@ -41696,570 +41767,318 @@ 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 - example: false + example: true 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 - - 100 - - 105 - - 103 - - 110 - - 105 - - 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 + - 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: 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 + - 85 - 116 - 32 - - 97 - - 108 - - 105 - - 97 - - 115 - - 32 - - 113 - - 117 - - 105 - - 115 - - 32 - - 100 - - 105 - - 103 - - 110 - - 105 - - 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 - - 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 - - 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: - - 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 @@ -42294,272 +42113,14 @@ definitions: 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 - 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: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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: true - 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 + example: true timeout: type: boolean description: Is the error a timeout? example: false - description: resource not found (default view) + description: request is invalid (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -42572,26 +42133,14 @@ definitions: - 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: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -42612,14 +42161,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: unauthorized access (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 @@ -42627,7 +42176,7 @@ definitions: - temporary - timeout - fault - ToolsetsAddExternalOAuthServerUnexpectedResponseBody: + ToolsetsAddExternalOAuthServerForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -42650,62 +42199,19 @@ 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: 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: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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) + description: permission denied (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 @@ -42713,7 +42219,7 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityBadRequestResponseBody: + ToolsetsAddExternalOAuthServerGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -42741,9 +42247,9 @@ definitions: 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 @@ -42756,7 +42262,7 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityBadRequestResponseBody: + ToolsetsAddExternalOAuthServerInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -42784,14 +42290,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: resource already exists (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 + timeout: true required: - name - id @@ -42799,7 +42305,7 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityForbiddenResponseBody: + ToolsetsAddExternalOAuthServerInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -42822,50 +42328,7 @@ definitions: 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 - 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: false timeout: type: boolean description: Is the error a timeout? @@ -42877,7 +42340,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -42885,7 +42348,7 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityInvalidResponseBody: + ToolsetsAddExternalOAuthServerNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -42912,10 +42375,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: resource not found (default view) example: - fault: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -42928,7 +42391,19 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityInvariantViolationResponseBody: + 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: @@ -42951,19 +42426,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: 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 @@ -42971,7 +42446,7 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityNotFoundResponseBody: + ToolsetsAddExternalOAuthServerUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -42999,13 +42474,13 @@ definitions: 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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -43014,14 +42489,14 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityUnauthorizedResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43037,19 +42512,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: unsupported media type (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 @@ -43057,7 +42532,7 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityUnexpectedResponseBody: + ToolsetsCheckMCPSlugAvailabilityBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43080,18 +42555,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: an unexpected error occurred (default view) + 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 @@ -43100,7 +42575,7 @@ definitions: - temporary - timeout - fault - ToolsetsCheckMCPSlugAvailabilityUnsupportedMediaResponseBody: + ToolsetsCheckMCPSlugAvailabilityConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43128,14 +42603,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unsupported media type (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: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -43143,7 +42618,7 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetBadRequestResponseBody: + ToolsetsCheckMCPSlugAvailabilityForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43170,15 +42645,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: request is invalid (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 + temporary: false + timeout: true required: - name - id @@ -43186,7 +42661,7 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetConflictResponseBody: + ToolsetsCheckMCPSlugAvailabilityGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43209,12 +42684,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: an unexpected error occurred (default view) example: fault: false id: 123abc @@ -43229,7 +42704,7 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetForbiddenResponseBody: + ToolsetsCheckMCPSlugAvailabilityInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43256,15 +42731,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: permission denied (default view) + 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 + timeout: true required: - name - id @@ -43272,14 +42747,14 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetGatewayErrorResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43315,14 +42790,14 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetInvalidResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43338,12 +42813,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: resource not found (default view) example: fault: true id: 123abc @@ -43358,7 +42833,7 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetInvariantViolationResponseBody: + ToolsetsCheckMCPSlugAvailabilityUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43385,8 +42860,8 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (default view) + example: true + description: unauthorized access (default view) example: fault: false id: 123abc @@ -43401,7 +42876,7 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetNotFoundResponseBody: + ToolsetsCheckMCPSlugAvailabilityUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43424,19 +42899,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -43444,7 +42919,7 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetUnauthorizedResponseBody: + ToolsetsCheckMCPSlugAvailabilityUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43472,13 +42947,13 @@ 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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -43487,7 +42962,7 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetUnexpectedResponseBody: + ToolsetsCloneToolsetBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43514,14 +42989,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: an unexpected error occurred (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: false + temporary: true timeout: false required: - name @@ -43530,7 +43005,7 @@ definitions: - temporary - timeout - fault - ToolsetsCloneToolsetUnsupportedMediaResponseBody: + ToolsetsCloneToolsetConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43558,13 +43033,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unsupported media type (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: true + temporary: false timeout: false required: - name @@ -43573,7 +43048,7 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetBadRequestResponseBody: + ToolsetsCloneToolsetForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43601,14 +43076,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: request is invalid (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: false - timeout: false + timeout: true required: - name - id @@ -43616,7 +43091,7 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetConflictResponseBody: + ToolsetsCloneToolsetGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43643,14 +43118,14 @@ 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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -43659,14 +43134,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetForbiddenResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43682,19 +43157,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: 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 @@ -43702,14 +43177,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetGatewayErrorResponseBody: + 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: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43725,19 +43200,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: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -43745,14 +43220,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetInvalidResponseBody: + 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: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43768,18 +43243,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 contains one or more invalidation fields (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: false required: - name @@ -43788,7 +43263,7 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetInvariantViolationResponseBody: + ToolsetsCloneToolsetUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -43811,19 +43286,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: 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 @@ -43831,14 +43306,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetNotFoundResponseBody: + 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. @@ -43854,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: true - description: resource not found (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 @@ -43874,52 +43349,57 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetRequestBody: - title: ToolsetsCreateToolsetRequestBody + ToolsetsCloneToolsetUnsupportedMediaResponseBody: + title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: - default_environment_slug: + fault: + type: boolean + description: Is the error a server-side fault? + example: false + id: 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: + description: ID is a unique identifier for this particular occurrence of the problem. + example: 123abc + message: type: string - description: Description of the toolset - example: Perspiciatis minus delectus est omnis minus laudantium. + description: 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 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. + description: Name is the name of this class of errors. + example: 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: - 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. + fault: true + id: 123abc + message: parameter 'p' must be an integer + name: bad_request + temporary: false + timeout: true required: - name - ToolsetsCreateToolsetUnauthorizedResponseBody: + - 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: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43935,19 +43415,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: request is invalid (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 @@ -43955,14 +43435,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetUnexpectedResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -43982,14 +43462,14 @@ 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 + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -43998,14 +43478,14 @@ definitions: - temporary - timeout - fault - ToolsetsCreateToolsetUnsupportedMediaResponseBody: + 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. @@ -44021,12 +43501,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: unsupported media type (default view) + description: permission denied (default view) example: fault: false id: 123abc @@ -44041,7 +43521,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetBadRequestResponseBody: + ToolsetsCreateToolsetGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44069,14 +43549,14 @@ 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: false - timeout: true + timeout: false required: - name - id @@ -44084,7 +43564,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetConflictResponseBody: + ToolsetsCreateToolsetInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44107,18 +43587,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: resource already exists (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 + temporary: false timeout: false required: - name @@ -44127,14 +43607,14 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetForbiddenResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44155,14 +43635,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 + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -44170,14 +43650,14 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetGatewayErrorResponseBody: + 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. @@ -44193,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: 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: false - timeout: true + timeout: false required: - name - id @@ -44213,14 +43693,53 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetInvalidResponseBody: + 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. @@ -44241,14 +43760,14 @@ definitions: 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 temporary: false - timeout: false + timeout: true required: - name - id @@ -44256,14 +43775,14 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetInvariantViolationResponseBody: + 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. @@ -44279,7 +43798,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -44291,7 +43810,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -44299,7 +43818,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetNotFoundResponseBody: + ToolsetsCreateToolsetUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44327,14 +43846,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource not found (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 @@ -44342,14 +43861,14 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetUnauthorizedResponseBody: + 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: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44370,57 +43889,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (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: 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: true + timeout: false required: - name - id @@ -44428,7 +43904,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetNotFoundResponseBody: + ToolsetsDeleteToolsetConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44456,7 +43932,7 @@ definitions: 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 id: 123abc @@ -44471,7 +43947,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetUnauthorizedResponseBody: + ToolsetsDeleteToolsetForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44499,14 +43975,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: unauthorized access (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: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -44514,7 +43990,7 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetUnexpectedResponseBody: + ToolsetsDeleteToolsetGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44537,19 +44013,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: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -44557,14 +44033,14 @@ definitions: - temporary - timeout - fault - ToolsetsDeleteToolsetUnsupportedMediaResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44580,19 +44056,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 + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -44600,14 +44076,14 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetBadRequestResponseBody: + 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. @@ -44627,15 +44103,15 @@ 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 - timeout: false + temporary: true + timeout: true required: - name - id @@ -44643,7 +44119,7 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetConflictResponseBody: + ToolsetsDeleteToolsetNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44666,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: false - description: resource already exists (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: false + temporary: true timeout: false required: - name @@ -44686,14 +44162,14 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetForbiddenResponseBody: + 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. @@ -44714,9 +44190,9 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: permission denied (default view) + description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -44729,50 +44205,7 @@ definitions: - 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: + ToolsetsDeleteToolsetUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44799,15 +44232,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: 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 + temporary: false + timeout: false required: - name - id @@ -44815,7 +44248,7 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetInvariantViolationResponseBody: + ToolsetsDeleteToolsetUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44843,13 +44276,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -44858,14 +44291,14 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetNotFoundResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -44886,14 +44319,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource not found (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 - temporary: true - timeout: false + temporary: false + timeout: true required: - name - id @@ -44901,7 +44334,7 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetUnauthorizedResponseBody: + ToolsetsGetToolsetConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -44929,9 +44362,9 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (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 @@ -44944,14 +44377,14 @@ definitions: - temporary - timeout - fault - ToolsetsGetToolsetUnexpectedResponseBody: + 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. @@ -44972,50 +44405,7 @@ definitions: 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) + description: permission denied (default view) example: fault: true id: 123abc @@ -45030,7 +44420,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsBadRequestResponseBody: + ToolsetsGetToolsetGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45053,19 +44443,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 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: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -45073,7 +44463,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsConflictResponseBody: + ToolsetsGetToolsetInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45100,14 +44490,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: resource already exists (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: true required: - name @@ -45116,50 +44506,7 @@ definitions: - 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 - ToolsetsListToolsetsForbiddenResponseBody: + ToolsetsGetToolsetInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45186,14 +44533,14 @@ definitions: 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: true + temporary: false timeout: false required: - name @@ -45202,14 +44549,14 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsGatewayErrorResponseBody: + 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. @@ -45225,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: false - description: an unexpected error occurred (default view) + 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: true required: - name @@ -45245,7 +44592,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsInvalidResponseBody: + ToolsetsGetToolsetUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45272,14 +44619,14 @@ 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: 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 @@ -45288,14 +44635,14 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsInvariantViolationResponseBody: + 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. @@ -45322,8 +44669,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 @@ -45331,14 +44678,14 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsNotFoundResponseBody: + 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. @@ -45359,14 +44706,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: resource not found (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 @@ -45374,14 +44721,14 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsUnauthorizedResponseBody: + 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 + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45402,13 +44749,13 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: unauthorized access (default view) + 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 @@ -45417,14 +44764,14 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsUnexpectedResponseBody: + 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. @@ -45440,18 +44787,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) + 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: true required: - name @@ -45460,7 +44807,7 @@ definitions: - temporary - timeout - fault - ToolsetsListToolsetsUnsupportedMediaResponseBody: + ToolsetsListToolsetsForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45487,15 +44834,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: unsupported media type (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 - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -45503,14 +44850,14 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerBadRequestResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45526,14 +44873,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: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -45546,7 +44893,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerConflictResponseBody: + ToolsetsListToolsetsInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45573,15 +44920,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource already exists (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 + temporary: false + timeout: false required: - name - id @@ -45589,14 +44936,14 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerForbiddenResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45617,13 +44964,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 id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -45632,7 +44979,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerGatewayErrorResponseBody: + ToolsetsListToolsetsNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45655,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: 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 - temporary: true + temporary: false timeout: true required: - name @@ -45675,14 +45022,14 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerInvalidResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45698,14 +45045,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) + description: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -45718,7 +45065,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerInvariantViolationResponseBody: + ToolsetsListToolsetsUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45741,18 +45088,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: false + temporary: true timeout: true required: - name @@ -45761,7 +45108,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerNotFoundResponseBody: + ToolsetsListToolsetsUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45788,10 +45135,10 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource not found (default view) + 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 @@ -45804,7 +45151,7 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerUnauthorizedResponseBody: + ToolsetsRemoveOAuthServerBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -45831,15 +45178,15 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (default view) + 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: true + temporary: false + timeout: false required: - name - id @@ -45847,14 +45194,14 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerUnexpectedResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45875,14 +45222,14 @@ definitions: 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: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: false + timeout: true required: - name - id @@ -45890,14 +45237,14 @@ definitions: - temporary - timeout - fault - ToolsetsRemoveOAuthServerUnsupportedMediaResponseBody: + 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. @@ -45913,14 +45260,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: unsupported media type (default view) + description: permission denied (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -45933,14 +45280,14 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetBadRequestResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -45960,14 +45307,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: true + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -45976,14 +45323,14 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetConflictResponseBody: + 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. @@ -45999,14 +45346,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: resource already exists (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 @@ -46019,7 +45366,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetForbiddenResponseBody: + ToolsetsRemoveOAuthServerInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46042,19 +45389,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: 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 @@ -46062,7 +45409,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetGatewayErrorResponseBody: + ToolsetsRemoveOAuthServerNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46085,19 +45432,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 not found (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 @@ -46105,7 +45452,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetInvalidResponseBody: + ToolsetsRemoveOAuthServerUnauthorizedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46132,10 +45479,10 @@ 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: unauthorized access (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -46148,7 +45495,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetInvariantViolationResponseBody: + ToolsetsRemoveOAuthServerUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46171,11 +45518,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 @@ -46183,7 +45530,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: false + timeout: true required: - name - id @@ -46191,14 +45538,14 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetNotFoundResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46214,18 +45561,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: 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: true required: - name @@ -46234,76 +45581,7 @@ definitions: - 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: 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: 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: + ToolsetsUpdateToolsetBadRequestResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46330,14 +45608,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false - description: unauthorized access (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 + temporary: false timeout: false required: - name @@ -46346,7 +45624,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetUnexpectedResponseBody: + ToolsetsUpdateToolsetConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46369,18 +45647,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 already exists (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 @@ -46389,7 +45667,7 @@ definitions: - temporary - timeout - fault - ToolsetsUpdateToolsetUnsupportedMediaResponseBody: + ToolsetsUpdateToolsetForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46412,19 +45690,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: permission denied (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 @@ -46432,174 +45710,14 @@ definitions: - 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: + 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. @@ -46619,14 +45737,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: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -46635,7 +45753,7 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutConflictResponseBody: + ToolsetsUpdateToolsetInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46658,18 +45776,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: resource already exists (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: false + temporary: true timeout: true required: - name @@ -46678,7 +45796,7 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutForbiddenResponseBody: + ToolsetsUpdateToolsetInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46705,10 +45823,10 @@ definitions: 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 + fault: false id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -46721,14 +45839,14 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutForbiddenResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46744,19 +45862,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: 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 @@ -46764,7 +45882,80 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutGatewayErrorResponseBody: + 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: @@ -46792,14 +45983,14 @@ definitions: type: boolean description: Is the error a timeout? example: false - description: an unexpected error occurred (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: false - timeout: true + timeout: false required: - name - id @@ -46807,7 +45998,7 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutInvalidResponseBody: + ToolsetsUpdateToolsetUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46830,14 +46021,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: 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 @@ -46850,14 +46041,14 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutInvariantViolationResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46877,15 +46068,220 @@ definitions: 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 - description: an unexpected error occurred (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: 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 @@ -46893,7 +46289,7 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutNotFoundResponseBody: + UsageCreateCheckoutConflictResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -46920,14 +46316,14 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: true - description: resource not found (default view) + 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 @@ -46936,14 +46332,14 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutUnauthorizedResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -46964,14 +46360,14 @@ definitions: type: boolean description: Is the error a timeout? example: true - 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 - timeout: false + temporary: false + timeout: true required: - name - id @@ -46979,7 +46375,7 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutUnexpectedResponseBody: + UsageCreateCheckoutGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47009,7 +46405,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 @@ -47022,7 +46418,7 @@ definitions: - temporary - timeout - fault - UsageCreateCheckoutUnsupportedMediaResponseBody: + UsageCreateCheckoutInvalidResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47045,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: unsupported media type (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 @@ -47065,7 +46461,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionBadRequestResponseBody: + UsageCreateCheckoutInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47093,14 +46489,14 @@ definitions: 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 message: parameter 'p' must be an integer name: bad_request - temporary: true - timeout: true + temporary: false + timeout: false required: - name - id @@ -47108,7 +46504,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionConflictResponseBody: + UsageCreateCheckoutNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47136,7 +46532,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: resource already exists (default view) + description: resource not found (default view) example: fault: true id: 123abc @@ -47151,14 +46547,14 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionForbiddenResponseBody: + 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 + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47178,15 +46574,15 @@ definitions: 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 + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -47194,14 +46590,14 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionGatewayErrorResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47217,14 +46613,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: an unexpected error occurred (default view) example: - fault: false + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request @@ -47237,7 +46633,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionInvalidResponseBody: + UsageCreateCheckoutUnsupportedMediaResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47265,14 +46661,14 @@ definitions: 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: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -47280,14 +46676,14 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionInvariantViolationResponseBody: + 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: false + example: true id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47303,17 +46699,60 @@ 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 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: @@ -47323,7 +46762,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionNotFoundResponseBody: + UsageCreateCustomerSessionForbiddenResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47351,14 +46790,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: false id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -47366,7 +46805,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionUnauthorizedResponseBody: + UsageCreateCustomerSessionGatewayErrorResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47394,14 +46833,57 @@ definitions: type: boolean description: Is the error a timeout? example: true - 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 + 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: true + timeout: false required: - name - id @@ -47409,7 +46891,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionUnexpectedResponseBody: + UsageCreateCustomerSessionInvariantViolationResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47443,7 +46925,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: false required: - name @@ -47452,7 +46934,7 @@ definitions: - temporary - timeout - fault - UsageCreateCustomerSessionUnsupportedMediaResponseBody: + UsageCreateCustomerSessionNotFoundResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47480,13 +46962,56 @@ definitions: type: boolean description: Is the error a timeout? example: false - 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 + 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: false + temporary: true timeout: true required: - name @@ -47495,7 +47020,7 @@ definitions: - temporary - timeout - fault - UsageGetPeriodUsageBadRequestResponseBody: + UsageCreateCustomerSessionUnexpectedResponseBody: title: 'Mediatype identifier: application/vnd.goa.error; view=default' type: object properties: @@ -47518,12 +47043,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 is invalid (default view) + description: an unexpected error occurred (default view) example: fault: true id: 123abc @@ -47538,14 +47063,14 @@ definitions: - temporary - timeout - fault - UsageGetPeriodUsageConflictResponseBody: + 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: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47566,7 +47091,7 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: resource already exists (default view) + description: unsupported media type (default view) example: fault: true id: 123abc @@ -47581,7 +47106,50 @@ definitions: - temporary - timeout - fault - UsageGetPeriodUsageForbiddenResponseBody: + 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: @@ -47609,13 +47177,13 @@ definitions: type: boolean description: Is the error a timeout? example: true - description: permission denied (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 + temporary: false timeout: false required: - name @@ -47624,14 +47192,14 @@ definitions: - temporary - timeout - fault - UsageGetPeriodUsageGatewayErrorResponseBody: + 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: true + example: false id: type: string description: ID is a unique identifier for this particular occurrence of the problem. @@ -47654,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 @@ -47690,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 @@ -47733,18 +47301,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 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 @@ -47776,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 @@ -47803,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. @@ -47819,19 +47387,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: resource not found (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 @@ -47846,7 +47414,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. @@ -47873,7 +47441,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -47905,7 +47473,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -47916,7 +47484,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -47932,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. @@ -47952,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 @@ -47960,7 +47528,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -47975,7 +47543,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. @@ -47991,19 +47559,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 @@ -48038,15 +47606,15 @@ definitions: 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 - timeout: false + temporary: false + timeout: true required: - name - id @@ -48061,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. @@ -48077,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 @@ -48120,14 +47688,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 @@ -48163,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 @@ -48190,7 +47758,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. @@ -48217,7 +47785,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: true + temporary: false timeout: false required: - name @@ -48249,11 +47817,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: resource not found (default view) example: fault: true @@ -48292,11 +47860,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: unauthorized access (default view) example: fault: true @@ -48304,7 +47872,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: true - timeout: true + timeout: false required: - name - id @@ -48339,7 +47907,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 @@ -48382,15 +47950,15 @@ definitions: 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: false - timeout: true + timeout: false required: - name - id @@ -48411,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 @@ -48489,7 +48054,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. @@ -48509,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 @@ -48532,7 +48097,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. @@ -48552,15 +48117,15 @@ definitions: 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: false - timeout: false + temporary: true + timeout: true required: - name - id @@ -48598,11 +48163,11 @@ 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 - temporary: false + temporary: true timeout: false required: - name @@ -48618,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. @@ -48634,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 @@ -48688,7 +48253,7 @@ definitions: id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -48704,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. @@ -48720,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 @@ -48747,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. @@ -48775,7 +48340,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -48790,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. @@ -48810,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 @@ -48849,7 +48414,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: false + example: true timeout: type: boolean description: Is the error a timeout? @@ -48861,7 +48426,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -48876,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. @@ -48892,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? @@ -48904,7 +48469,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -48939,7 +48504,7 @@ definitions: timeout: type: boolean description: Is the error a timeout? - example: false + example: true description: request is invalid (default view) example: fault: true @@ -48978,7 +48543,7 @@ definitions: temporary: type: boolean description: Is the error temporary? - example: true + example: false timeout: type: boolean description: Is the error a timeout? @@ -49005,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. @@ -49021,18 +48586,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 + fault: true id: 123abc message: parameter 'p' must be an integer name: bad_request - temporary: false + temporary: true timeout: true required: - name @@ -49076,7 +48641,7 @@ definitions: message: parameter 'p' must be an integer name: bad_request temporary: false - timeout: true + timeout: false required: - name - id @@ -49118,8 +48683,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 @@ -49150,19 +48715,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: false - timeout: true + temporary: true + timeout: false required: - name - id @@ -49197,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 @@ -49236,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 @@ -49263,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. @@ -49283,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 @@ -49306,7 +48871,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. @@ -49322,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? @@ -49333,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 @@ -49365,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? @@ -49376,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 @@ -49392,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. @@ -49408,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 @@ -49435,7 +49000,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. @@ -49462,8 +49027,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 @@ -49501,12 +49066,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 @@ -49541,10 +49106,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 @@ -49580,18 +49145,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: false required: - name @@ -49607,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. @@ -49627,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 @@ -49658,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: @@ -49728,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 @@ -49751,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. @@ -49767,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 @@ -49816,49 +49384,6 @@ definitions: 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 - 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: false - id: - type: string - description: ID is a unique identifier for this particular occurrence of the problem. - example: 123abc - message: - type: string - description: Message is a human-readable explanation specific to this occurrence of the problem. - example: parameter 'p' must be an integer - name: - type: string - description: Name is the name of this class of errors. - example: 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 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") {